Font Creation - Character Selection

Describes how to use different methods for specifying character range when creating fonts in editor.

For main tutorial: https://ferdowsur.gitbook.io/tinygiantstudios/#creating-fonts

Use this button to check the characters

There are 4 ways to assign characters to be included. In this document, I will go through them one by one.

Character Range

Pretty straight forward. If you type 'A' as start, 'Z' as end, it will include ABC.....XYZ characters. Follow this link to get the character range for your language: https://unicode-table.com/en/

Unicode Range

Same as character range. Instead of characters, use unicodes. Follow this link to get the character range for your language: https://unicode-table.com/en/

Custom Characters

Whatever character is in the text field, will be inside the font.

Unicode Sequence

When you search for character range for your language, this is the type of format you would find most results. 0021-007E, 00C0

In this sequence, 0021-007E means to include all characters between these range. And the 00C0 alone means to include only this. http://www.unicode.org/charts/ You will find a lot of language Unicode ranges here. Open the link. Select your language and on top you will the Range. Type the ranges in here.

Last updated