Unicode Finder

"Ꭻ" U+13AB(CHEROKEE LETTER GU)

U+13AB
Название Блока
Cherokee
Название
CHEROKEE LETTER GU

Programming

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

Web

CSS
\0013AB
HtmlDecimal
Ꭻ
HtmlHexadecimal
Ꭻ
Url
%E1%8E%AB

Code

MD5
d579a1a9ca29f4e2b5d7b62be7f94fca
Sha1
32434e02178cffc0812487762919564190747e54
Base64
4Y6r

Примеры Использования

Programming Languages

C:

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

JavaScript:

const char = '\u13AB';
console.log(char);  // Output: Ꭻ

Java:

char c = '\u13AB';
System.out.println(c);  // Output: Ꭻ

JSON:

{"text": "\u13AB"}  // Value: Ꭻ

Python:

char = '\u13AB'
print(char)  # Output: Ꭻ

Perl:

my $char = "\x{13AB}";
print $char;  # Output: Ꭻ

PHP:

$char = "\x{13AB}";
echo $char;  // Output: Ꭻ

Ruby:

char = "\u{13AB}"
puts char  # Output: Ꭻ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#5035;</p>  <!-- Display: Ꭻ -->

HTML Hexadecimal:

<p>HTML hex: &#x13AB;</p>  <!-- Display: Ꭻ -->

URL Encoding:

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

Encodings

MD5:

d579a1a9ca29f4e2b5d7b62be7f94fca

SHA1:

32434e02178cffc0812487762919564190747e54

Base64:

4Y6r