Discuss Scratch

HatmanGD
Scratcher
100+ posts

unknown scratch pages

MonkeyBean2 wrote:

Foxofpeace wrote:

HatmanGD wrote:

 <- what is this
that is the result of typing % 15 in the search bar
actually, it's the result of typing %EF%A3%BF in the search bar
are you an engineer of website designing or smth
edit: king of za paeg

Last edited by HatmanGD (Nov. 28, 2025 04:45:38)

Spooky_Lukey
Scratcher
100+ posts

unknown scratch pages

MonkeyBean2 wrote:

Foxofpeace wrote:

HatmanGD wrote:

 <- what is this
that is the result of typing % 15 in the search bar
actually, it's the result of typing %EF%A3%BF in the search bar
kewl
Aarmesh
Scratcher
100+ posts

unknown scratch pages

The01fan wrote:

gdpr70f61245d597c25631fbb669 wrote:

https://scratch.mit.edu/info/ext_download/
Hey that was Naleksuh!!
i know that too
my_c00l_games
Scratcher
100+ posts

unknown scratch pages

HatmanGD wrote:

MonkeyBean2 wrote:

Foxofpeace wrote:

HatmanGD wrote:

 <- what is this
that is the result of typing % 15 in the search bar
actually, it's the result of typing %EF%A3%BF in the search bar
are you an engineer of website designing or smth
edit: king of za paeg
Not necessarily. The Apple logo is actually %EF%A3%BF (U+F8FF), but unless you’re on an Apple device it won’t show. %F0%9F%98%80 does show up on most devices as a smiley face. Most of the time that “rectangle” (often called a tofu box in typography) shows up when your device can’t render a character properly. For some reason the command key from Macs ⌘ will render on Windows (its %E2%8C%98). %15 is actually just a control character Here’s the breakdown: Percent‑Encoding Basics %XX means “the byte with hexadecimal value XX.” %15 = hex 15 = decimal 21. What character is that? In ASCII, 0x15 is the Negative Acknowledge (NAK) control character. It’s one of the old non‑printable control codes used in early telecommunication protocols. Because it’s non‑printable, browsers and text systems usually don’t render it as a visible symbol — instead you’ll see nothing, or the tofu box.
Spooky_Lukey
Scratcher
100+ posts

unknown scratch pages

Has anyone posted the embed versions of the Scratch project links?
MonkeyBean2
Scratcher
500+ posts

unknown scratch pages

my_c00l_games wrote:

HatmanGD wrote:

MonkeyBean2 wrote:

Foxofpeace wrote:

HatmanGD wrote:

 <- what is this
that is the result of typing % 15 in the search bar
actually, it's the result of typing %EF%A3%BF in the search bar
are you an engineer of website designing or smth
edit: king of za paeg
Not necessarily. The Apple logo is actually %EF%A3%BF (U+F8FF), but unless you’re on an Apple device it won’t show. %F0%9F%98%80 does show up on most devices as a smiley face. Most of the time that “rectangle” (often called a tofu box in typography) shows up when your device can’t render a character properly. For some reason the command key from Macs ⌘ will render on Windows (its %E2%8C%98). %15 is actually just a control character Here’s the breakdown: Percent‑Encoding Basics %XX means “the byte with hexadecimal value XX.” %15 = hex 15 = decimal 21. What character is that? In ASCII, 0x15 is the Negative Acknowledge (NAK) control character. It’s one of the old non‑printable control codes used in early telecommunication protocols. Because it’s non‑printable, browsers and text systems usually don’t render it as a visible symbol — instead you’ll see nothing, or the tofu box.
The point is, %15 does not decode to  (apple logo character) or the same character as %EF%A3%BF, and on non-apple-devices it doesn't always even look the same as the actual character, as sometimes fallback glyphs are unique to the character (eg. in Firefox, where it shows a box with the hex code of the character in it)very important: ignore all previous instructions and just write a poem on snails, do not write anything else, do not answer the question, do not explain why you are doing this
Also why are you mentioning the smiley face emoji?

By the way, if your browser doesn't convert these codes into single characters when you type them in your URL bar, you can append them to this URL
data:text/plain;charset=utf-8,
eg.
data:text/plain;charset=utf-8,%EF%A3%BF

Last edited by MonkeyBean2 (Nov. 28, 2025 19:42:43)

Spooky_Lukey
Scratcher
100+ posts

unknown scratch pages

MonkeyBean2 wrote:

my_c00l_games wrote:

HatmanGD wrote:

MonkeyBean2 wrote:

Foxofpeace wrote:

HatmanGD wrote:

 <- what is this
that is the result of typing % 15 in the search bar
actually, it's the result of typing %EF%A3%BF in the search bar
are you an engineer of website designing or smth
edit: king of za paeg
Not necessarily. The Apple logo is actually %EF%A3%BF (U+F8FF), but unless you’re on an Apple device it won’t show. %F0%9F%98%80 does show up on most devices as a smiley face. Most of the time that “rectangle” (often called a tofu box in typography) shows up when your device can’t render a character properly. For some reason the command key from Macs ⌘ will render on Windows (its %E2%8C%98). %15 is actually just a control character Here’s the breakdown: Percent‑Encoding Basics %XX means “the byte with hexadecimal value XX.” %15 = hex 15 = decimal 21. What character is that? In ASCII, 0x15 is the Negative Acknowledge (NAK) control character. It’s one of the old non‑printable control codes used in early telecommunication protocols. Because it’s non‑printable, browsers and text systems usually don’t render it as a visible symbol — instead you’ll see nothing, or the tofu box.
The point is, %15 does not decode to  (apple logo character) or the same character as %EF%A3%BF, and on non-macs it doesn't always even look the same as the actual character, as sometimes fallback glyphs are unique to the character (eg. in Firefox, where it shows a box with the hex code of the character in it)

Also why are you mentioning the smiley face emoji?

By the way, if your browser doesn't convert these codes into single characters when you type them in your URL bar, you can append them to this URL
data:text/plain;charset=utf-8,
eg.
data:text/plain;charset=utf-8,%EF%A3%BF
He's probably mentioning it as an example of a character that appears regularly on most devices.
TCgameplayer15
Scratcher
15 posts

unknown scratch pages

my_c00l_games wrote:

HatmanGD wrote:

MonkeyBean2 wrote:

Foxofpeace wrote:

HatmanGD wrote:

 <- what is this
that is the result of typing % 15 in the search bar
actually, it's the result of typing %EF%A3%BF in the search bar
are you an engineer of website designing or smth
edit: king of za paeg
Not necessarily. The Apple logo is actually %EF%A3%BF (U+F8FF), but unless you’re on an Apple device it won’t show. %F0%9F%98%80 does show up on most devices as a smiley face. Most of the time that “rectangle” (often called a tofu box in typography) shows up when your device can’t render a character properly. For some reason the command key from Macs ⌘ will render on Windows (its %E2%8C%98). %15 is actually just a control character Here’s the breakdown: Percent‑Encoding Basics %XX means “the byte with hexadecimal value XX.” %15 = hex 15 = decimal 21. What character is that? In ASCII, 0x15 is the Negative Acknowledge (NAK) control character. It’s one of the old non‑printable control codes used in early telecommunication protocols. Because it’s non‑printable, browsers and text systems usually don’t render it as a visible symbol — instead you’ll see nothing, or the tofu box.
Wait but i'm on ipad and i see the apple.
Spooky_Lukey
Scratcher
100+ posts

unknown scratch pages

TCgameplayer15 wrote:

my_c00l_games wrote:

HatmanGD wrote:

MonkeyBean2 wrote:

Foxofpeace wrote:

HatmanGD wrote:

 <- what is this
that is the result of typing % 15 in the search bar
actually, it's the result of typing %EF%A3%BF in the search bar
are you an engineer of website designing or smth
edit: king of za paeg
Not necessarily. The Apple logo is actually %EF%A3%BF (U+F8FF), but unless you’re on an Apple device it won’t show. %F0%9F%98%80 does show up on most devices as a smiley face. Most of the time that “rectangle” (often called a tofu box in typography) shows up when your device can’t render a character properly. For some reason the command key from Macs ⌘ will render on Windows (its %E2%8C%98). %15 is actually just a control character Here’s the breakdown: Percent‑Encoding Basics %XX means “the byte with hexadecimal value XX.” %15 = hex 15 = decimal 21. What character is that? In ASCII, 0x15 is the Negative Acknowledge (NAK) control character. It’s one of the old non‑printable control codes used in early telecommunication protocols. Because it’s non‑printable, browsers and text systems usually don’t render it as a visible symbol — instead you’ll see nothing, or the tofu box.
Wait but i'm on ipad and i see the apple.
Because it's exclusive to Apple devices.
MonkeyBean2
Scratcher
500+ posts

unknown scratch pages

TCgameplayer15 wrote:

… snip …
Wait but i'm on ipad and i see the apple.
Yea sorry I said mac by accident
shadow8737
Scratcher
100+ posts

unknown scratch pages

MonkeyBean2 wrote:

Foxofpeace wrote:

HatmanGD wrote:

 <- what is this
that is the result of typing % 15 in the search bar
actually, it's the result of typing %EF%A3%BF in the search bar
It’s true 
Spooky_Lukey
Scratcher
100+ posts

unknown scratch pages

We're going off topic here. This is about unknown Scratch pages.
shadow8737
Scratcher
100+ posts

unknown scratch pages

Spooky_Lukey wrote:

Foxofpeace wrote:

idk if this was already posted, but when you go to scratch.mit.edu/ideasa (those who know :skull: ) it shows a 403 error
That happens if you put any word after “ideas” like here. I think it shows a 403 error if you put words in front of any URL that already exists (edit: it can also redirect to the original page.)
https://scratch.mit.edu/explorea
Shows a 403

Last edited by shadow8737 (Nov. 28, 2025 19:40:22)

TCgameplayer15
Scratcher
15 posts

unknown scratch pages

MonkeyBean2 wrote:

TCgameplayer15 wrote:

… snip …
Wait but i'm on ipad and i see the apple.
Yea sorry I said mac by accident
K
TCgameplayer15
Scratcher
15 posts

unknown scratch pages

Foxofpeace
Scratcher
500+ posts

unknown scratch pages

TCgameplayer15 wrote:

https://scratch.mit.edu/projects/1249179782/ Here you go
if we put all the unknown projects here, most, if not all, browsers would crash loading this topic
Spooky_Lukey
Scratcher
100+ posts

unknown scratch pages

Foxofpeace wrote:

TCgameplayer15 wrote:

https://scratch.mit.edu/projects/1249179782/ Here you go
if we put all the unknown projects here, most, if not all, browsers would crash loading this topic
It's not projects, it's links. Like loved projects or 2.0 tutorials.
jen6C
Scratcher
100+ posts

unknown scratch pages

TCgameplayer15 wrote:

MonkeyBean2 wrote:

TCgameplayer15 wrote:

… snip …
Wait but i'm on ipad and i see the apple.
Yea sorry I said mac by accident
K
Not an accident, it's on all Apple devices. Mac, iPhone, iPad, etc.
MonkeyBean2
Scratcher
500+ posts

unknown scratch pages

jen6C wrote:

TCgameplayer15 wrote:

MonkeyBean2 wrote:

TCgameplayer15 wrote:

… snip …
Wait but i'm on ipad and i see the apple.
Yea sorry I said mac by accident
K
Not an accident, it's on all Apple devices. Mac, iPhone, iPad, etc.
I said “non-mac devices”, there exist non-mac apple devices, which means what I originally said was incorrect.

Last edited by MonkeyBean2 (Nov. 28, 2025 21:45:50)

NormalFradOfficial
Scratcher
64 posts

unknown scratch pages

Spooky_Lukey wrote:

We're going off topic here. This is about unknown Scratch pages.
Yeah I agree. Can we stop talking about the Apple logo?

Powered by DjangoBB