Unicode Finder

"Ꮋ" U+13BB(CHEROKEE LETTER MI)

U+13BB
Nama Blok
Cherokee
Nama
CHEROKEE LETTER MI

Programming

C
\u13BB
JavaScript
\u13BB
Java
\u13BB
Json
\u13BB
Python
\u13BB
Perl
\x{13BB}
PHP
\x{13BB}
Ruby
\u{13BB}
Rust
\u{13BB}
Go
\u13BB

Web

CSS
\0013BB
HtmlDecimal
Ꮋ
HtmlHexadecimal
Ꮋ
Url
%E1%8E%BB

Code

MD5
ca5ba7fa90f1156b94444532ea7acd17
Sha1
6f4fad0c40e9b82d47b8cd5e5cb507c193d424ec
Base64
4Y67

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u13BB';
console.log(char);  // Output: Ꮋ

Java:

char c = '\u13BB';
System.out.println(c);  // Output: Ꮋ

JSON:

{"text": "\u13BB"}  // Value: Ꮋ

Python:

char = '\u13BB'
print(char)  # Output: Ꮋ

Perl:

my $char = "\x{13BB}";
print $char;  # Output: Ꮋ

PHP:

$char = "\x{13BB}";
echo $char;  // Output: Ꮋ

Ruby:

char = "\u{13BB}"
puts char  # Output: Ꮋ

Rust:

let c = '\u{13BB}';
println!("{}", c);  // Output: Ꮋ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0013BB";  /* Display: Ꮋ */
}

HTML Decimal:

<p>HTML decimal: &#5051;</p>  <!-- Display: Ꮋ -->

HTML Hexadecimal:

<p>HTML hex: &#x13BB;</p>  <!-- Display: Ꮋ -->

URL Encoding:

// Ꮋ URL encoding
https://unicodefinder.com/search.php?query=%E1%8E%BB

Encodings

MD5:

ca5ba7fa90f1156b94444532ea7acd17

SHA1:

6f4fad0c40e9b82d47b8cd5e5cb507c193d424ec

Base64:

4Y67