Unicode Finder

"Ꭴ" U+13A4(CHEROKEE LETTER U)

U+13A4
Nome del Blocco
Cherokee
Nome
CHEROKEE LETTER U

Programming

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

Web

CSS
\0013A4
HtmlDecimal
Ꭴ
HtmlHexadecimal
Ꭴ
Url
%E1%8E%A4

Code

MD5
ac4f5627cce5a4ad699aef3c8fc3343c
Sha1
0bd0da3d3c4ce81c347fa24c43a4a78f3b4e4ddc
Base64
4Y6k

Esempi di Utilizzo

Programming Languages

C:

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

JavaScript:

const char = '\u13A4';
console.log(char);  // Output: Ꭴ

Java:

char c = '\u13A4';
System.out.println(c);  // Output: Ꭴ

JSON:

{"text": "\u13A4"}  // Value: Ꭴ

Python:

char = '\u13A4'
print(char)  # Output: Ꭴ

Perl:

my $char = "\x{13A4}";
print $char;  # Output: Ꭴ

PHP:

$char = "\x{13A4}";
echo $char;  // Output: Ꭴ

Ruby:

char = "\u{13A4}"
puts char  # Output: Ꭴ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#5028;</p>  <!-- Display: Ꭴ -->

HTML Hexadecimal:

<p>HTML hex: &#x13A4;</p>  <!-- Display: Ꭴ -->

URL Encoding:

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

Encodings

MD5:

ac4f5627cce5a4ad699aef3c8fc3343c

SHA1:

0bd0da3d3c4ce81c347fa24c43a4a78f3b4e4ddc

Base64:

4Y6k