Unicode Finder

"Ꮜ" U+13CC(CHEROKEE LETTER SA)

U+13CC
Block Name
Cherokee
Name
CHEROKEE LETTER SA

Programming

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

Web

CSS
\0013CC
HtmlDecimal
Ꮜ
HtmlHexadecimal
Ꮜ
Url
%E1%8F%8C

Code

MD5
3b560ff89492ebfc73cfe8d73c1dd635
Sha1
1028abc0ed4879c010eeeb6f7986f9892207f334
Base64
4Y+M

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u13CC';
console.log(char);  // Output: Ꮜ

Java:

char c = '\u13CC';
System.out.println(c);  // Output: Ꮜ

JSON:

{"text": "\u13CC"}  // Value: Ꮜ

Python:

char = '\u13CC'
print(char)  # Output: Ꮜ

Perl:

my $char = "\x{13CC}";
print $char;  # Output: Ꮜ

PHP:

$char = "\x{13CC}";
echo $char;  // Output: Ꮜ

Ruby:

char = "\u{13CC}"
puts char  # Output: Ꮜ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#5068;</p>  <!-- Display: Ꮜ -->

HTML Hexadecimal:

<p>HTML hex: &#x13CC;</p>  <!-- Display: Ꮜ -->

URL Encoding:

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

Encodings

MD5:

3b560ff89492ebfc73cfe8d73c1dd635

SHA1:

1028abc0ed4879c010eeeb6f7986f9892207f334

Base64:

4Y+M