Skip to content

Instantly share code, notes, and snippets.

@RichardULZ
Last active February 4, 2026 14:54
Show Gist options
  • Select an option

  • Save RichardULZ/2920dca52989902dbb7225318256c545 to your computer and use it in GitHub Desktop.

Select an option

Save RichardULZ/2920dca52989902dbb7225318256c545 to your computer and use it in GitHub Desktop.
GBstudio Every character in the ascii png (table)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
! " # $ % & ' ( ) * + , - . /
0 1 2 3 4 5 6 7 8 9 : ; < = > ?
@ A B C D E F G H I J K L M N O
P Q R S T U V W X Y Z [ \ ] ^ _
` a b c d e f g h i j k l m n o
p q r s t u v w x y z { | } ~
¡ ¢ £ ¤ ¥ ¦ § ¨ © ª « ¬ �­ ® ¯
° ± ² ³ ´ µ · ¸ ¹ º » ¼ ½ ¾ ¿
À Á Â Ã Ä Å Æ Ç È É Ê Ë Ì Í Î Ï
Ð Ñ Ò Ó Ô Õ Ö × Ø Ù Ú Û Ü Ý Þ ß
à á â ã ä å æ ç è é ê ë ì í î ï
ð ñ ò ó ô õ ö ÷ ø ù ú û ü ý þ ÿ

Raw

 !"#$%&'()*+,-./
0123456789:;<=>?
@ABCDEFGHIJKLMNO
PQRSTUVWXYZ[\]^_
`abcdefghijklmno
pqrstuvwxyz{|}~�
����������������
����������������
 ¡¢£¤¥¦§¨©ª«¬�­®¯
°±²³´µ¶·¸¹º»¼½¾¿
ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏ
ÐÑÒÓÔÕÖרÙÚÛÜÝÞß
àáâãäåæçèéêëìíîï
ðñòóôõö÷øùúûüýþÿ

most of the ? should be copied by switching to raw mode.
This is the charecters that show as ? or Square, Don't copy these ones, use the Squares in raw.
€‚ƒ„…†‡ˆ‰Š‹ŒŽ
‘’“”•–—˜™š›œžŸ

 	!	"	#	$	%	&	'	(	)	*	+	,	-	.	/
0	1	2	3	4	5	6	7	8	9	:	;	<	=	>	?
@	A	B	C	D	E	F	G	H	I	J	K	L	M	N	O
P	Q	R	S	T	U	V	W	X	Y	Z	[	\	]	^	_
`	a	b	c	d	e	f	g	h	i	j	k	l	m	n	o
p	q	r	s	t	u	v	w	x	y	z	{	|	}	~	�
�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�
�	�	�	�	�	�	�	�	�	�	�	�	�	�	�	�
	¡	¢	£	¤	¥	¦	§	¨	©	ª	«	¬	�­	®	¯
°	±	²	³	´	µ	¶	·	¸	¹	º	»	¼	½	¾	¿
À	Á	Â	Ã	Ä	Å	Æ	Ç	È	É	Ê	Ë	Ì	Í	Î	Ï
Ð	Ñ	Ò	Ó	Ô	Õ	Ö	×	Ø	Ù	Ú	Û	Ü	Ý	Þ	ß
à	á	â	ã	ä	å	æ	ç	è	é	ê	ë	ì	í	î	ï
ð	ñ	ò	ó	ô	õ	ö	÷	ø	ù	ú	û	ü	ý	þ	ÿ
@RichardULZ

Copy link
Copy Markdown
Author

As per the ascii .png
ascii

@RichardULZ

RichardULZ commented Jun 7, 2019

Copy link
Copy Markdown
Author

Example use case!
Ascii
ascii
Your text box will look like this

ÀÁÂÃHello! I'm
ÐÑÒÓDrossel Von
àáâãFlügel

image

@Project-Dawn-Light

Copy link
Copy Markdown

this is really interesting i might try something like it, tho i dont know how i would do it

@RichardULZ

Copy link
Copy Markdown
Author

Addendum, you can export the list of characters using String.fromCharCode

Link to example and Javascript code debugger
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/fromCharCode

You can use this code to generate them with Output and EndOutput to show the clear start and end,
Paste it into the debugger in the link above.

var result = "Output";
for (i = 32; i <= 255; i++) {
  result = result + "" +(String.fromCharCode(i));
}
console.log(result+"EndOutput");

Alternatively, use this to have a , comma delimiting each character, useful for any replace functions you might use in notepad++.

var result = "";
for (i = 32; i <= 255; i++) {
  result = result + "," +(String.fromCharCode(i));
}
console.log(result);

@AdamStormhardtGH

Copy link
Copy Markdown

Thanks for sharing this! Exactly what I was looking for.
The UI section in the docs would benefit form including a copy-paste-able default character map.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment