LoginLogin
Nintendo shutting down 3DS + Wii U online services, see our post

CHR$(?) Codes

Root / Submissions / [.]

S_DE_SolutionsCreated:
English description: When you try to use CHR$(), it can be frustrating to find the right character code number. Of course you can write a program for it, but it can be annoying. Here you will find the most important code numbers. In the pictures you will find all the numbers that can be entered using the standard keyboard. In addition, there are other special characters that are not accessible via the keyboard. These are mostly single characters in the sea at placeholders between the value ranges. So for example: CHR$(10) = new line with X start-position 0

CHR$(496) = unknown special characters

CHR$(711) =

ˇ

CHR$(728) =

˘

CHR$(729) =

˙

CHR$(730) =

˚

CHR$(731) =

˜

CHR$(3336) = CE

CHR$(8364) = €

CHR$(8482) =

CHR$(8730) = unknown special characters

From CHR$(57600) up to CHR$(57727) you can find characters from the EDIT-mode-editor. Thank to 12ME21: There is also a Website, with the List in Unicode-Numbers and a "How to use Unicode" (this i hadn't observed). So have a look at this extern link. http://smilebasic.com/en/supplements/unicode/ Deutsche Beschreibung:
SpoilerWenn Sie versuchen, CHR$() zu verwenden, kann es frustrierend sein, die richtige Charakter-Code-nummer zu finden. Natürlich kann man dafür ein Programm schreiben, doch das kann unter Umständen nervig sein. Hier finden Sie daher die wichtigsten Code-Nummern. In den Bildern finden Sie alle Nummer, die über die Standart-Tastatur eingegeben werden können. Darüber hinaus gibt es weitere Sonderzeichen, die nicht über die Tastatur erreichbar sind. Dies sind meist einzelne Zeichen in dem Meer an Platzhaltern zwischen den Wertebereichen. So zum Beispiel: CHR$(10) = neue Zeile mit X-Startposition 0 CHR$(496) = unbekanntes Sonderzeichen CHR$(711) =

ˇ

CHR$(728) =

˘

CHR$(729) =

˙

CHR$(730) =

˚

CHR$(731) =

˜

CHR$(3336) = CE

CHR$(8364) = €

CHR$(8482) =

CHR$(8730) = unbekanntes Sonderzeichen Von CHR$(57600) bis CHR$(57727) sind Zeichen aus dem EDIT-Mode-Editor zu finden. Danke an 12ME21: Es gibt auch eine Website, mit der Liste in Unicode-Nummern und einem "Wie nutze ich Unicode"(das hatte ich übersehen). Werfen Sie also einen Blick auf diesen externen Link(in englischer Sprache) http://smilebasic.com/en/supplements/unicode/

Or you could just use ASC("")

Replying to:rando
Or you could just use ASC("")
yeah but you have to know what the quotation mark symbol's CHR code is in order to get it from ASC() which defeats the purpose of using ASC to find a CHR code. But other than that, yeah you can just do that.

Replying to:rando
Or you could just use ASC("")
Step 1: highlight a quotation mark character and press "copy" Step 2: ?ASC(CLIPBOARD())

Replying to:rando
Or you could just use ASC("")
Yeah that