Skip to content

Instantly share code, notes, and snippets.

@RichardULZ
Last active September 29, 2021 17:00
Show Gist options
  • Save RichardULZ/2920dca52989902dbb7225318256c545 to your computer and use it in GitHub Desktop.
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
Author

As per the ascii .png
ascii

@RichardULZ
Copy link
Author

RichardULZ commented Jun 7, 2019

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

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

@RichardULZ
Copy link
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

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