Unicode Finder

"Ꮼ" U+13EC(CHEROKEE LETTER WO)

U+13EC
Bloknaam
Cherokee
Naam
CHEROKEE LETTER WO

Programming

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

Web

CSS
\0013EC
HtmlDecimal
Ꮼ
HtmlHexadecimal
Ꮼ
Url
%E1%8F%AC

Code

MD5
2a8322b8f5f35a0ff06eab165b6a62eb
Sha1
70e4e98de8b29a6f52eb81463bdb250d89361485
Base64
4Y+s

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u13EC';
console.log(char);  // Output: Ꮼ

Java:

char c = '\u13EC';
System.out.println(c);  // Output: Ꮼ

JSON:

{"text": "\u13EC"}  // Value: Ꮼ

Python:

char = '\u13EC'
print(char)  # Output: Ꮼ

Perl:

my $char = "\x{13EC}";
print $char;  # Output: Ꮼ

PHP:

$char = "\x{13EC}";
echo $char;  // Output: Ꮼ

Ruby:

char = "\u{13EC}"
puts char  # Output: Ꮼ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#5100;</p>  <!-- Display: Ꮼ -->

HTML Hexadecimal:

<p>HTML hex: &#x13EC;</p>  <!-- Display: Ꮼ -->

URL Encoding:

// Ꮼ URL encoding
https://unicodefinder.com/search.php?query=%E1%8F%AC

Encodings

MD5:

2a8322b8f5f35a0ff06eab165b6a62eb

SHA1:

70e4e98de8b29a6f52eb81463bdb250d89361485

Base64:

4Y+s