Unicode Finder

"᱙" U+1C59(OL CHIKI DIGIT NINE)

U+1C59
Block Name
Ol Chiki
Name
OL CHIKI DIGIT NINE

Programming

C
\u1C59
JavaScript
\u1C59
Java
\u1C59
Json
\u1C59
Python
\u1C59
Perl
\x{1C59}
PHP
\x{1C59}
Ruby
\u{1C59}
Rust
\u{1C59}
Go
\u1C59

Web

CSS
\001C59
HtmlDecimal
᱙
HtmlHexadecimal
᱙
Url
%E1%B1%99

Code

MD5
66f7416d07bc1df5309df28e361763ca
Sha1
0896e4d1c8dac500940e4e60426104be41561424
Base64
4bGZ

Usage Examples

Programming Languages

C:

char c = '\u1C59';
printf("%c\n", c);  // Output: ᱙

JavaScript:

const char = '\u1C59';
console.log(char);  // Output: ᱙

Java:

char c = '\u1C59';
System.out.println(c);  // Output: ᱙

JSON:

{"text": "\u1C59"}  // Value: ᱙

Python:

char = '\u1C59'
print(char)  # Output: ᱙

Perl:

my $char = "\x{1C59}";
print $char;  # Output: ᱙

PHP:

$char = "\x{1C59}";
echo $char;  // Output: ᱙

Ruby:

char = "\u{1C59}"
puts char  # Output: ᱙

Rust:

let c = '\u{1C59}';
println!("{}", c);  // Output: ᱙

Go:

char := '\u1C59'
fmt.Printf("%c\n", char)  // Output: ᱙

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001C59";  /* Display: ᱙ */
}

HTML Decimal:

<p>HTML decimal: &#7257;</p>  <!-- Display: ᱙ -->

HTML Hexadecimal:

<p>HTML hex: &#x1C59;</p>  <!-- Display: ᱙ -->

URL Encoding:

// ᱙ URL encoding
https://unicodefinder.com/search.php?query=%E1%B1%99

Encodings

MD5:

66f7416d07bc1df5309df28e361763ca

SHA1:

0896e4d1c8dac500940e4e60426104be41561424

Base64:

4bGZ