Unicode Finder

"Ꮵ" U+13E5(CHEROKEE LETTER TSI)

U+13E5
Bloknaam
Cherokee
Naam
CHEROKEE LETTER TSI

Programming

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

Web

CSS
\0013E5
HtmlDecimal
Ꮵ
HtmlHexadecimal
Ꮵ
Url
%E1%8F%A5

Code

MD5
a792f946ee859d4e64c3331b344cab98
Sha1
5ff84d8581e0bb66040429ade64fcf09b51ba18a
Base64
4Y+l

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u13E5';
console.log(char);  // Output: Ꮵ

Java:

char c = '\u13E5';
System.out.println(c);  // Output: Ꮵ

JSON:

{"text": "\u13E5"}  // Value: Ꮵ

Python:

char = '\u13E5'
print(char)  # Output: Ꮵ

Perl:

my $char = "\x{13E5}";
print $char;  # Output: Ꮵ

PHP:

$char = "\x{13E5}";
echo $char;  // Output: Ꮵ

Ruby:

char = "\u{13E5}"
puts char  # Output: Ꮵ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#5093;</p>  <!-- Display: Ꮵ -->

HTML Hexadecimal:

<p>HTML hex: &#x13E5;</p>  <!-- Display: Ꮵ -->

URL Encoding:

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

Encodings

MD5:

a792f946ee859d4e64c3331b344cab98

SHA1:

5ff84d8581e0bb66040429ade64fcf09b51ba18a

Base64:

4Y+l