Unicode Finder

"ᦌ" U+198C(NEW TAI LUE LETTER LOW SA)

U+198C
Block Name
New Tai Lue
Name
NEW TAI LUE LETTER LOW SA

Programming

C
\u198C
JavaScript
\u198C
Java
\u198C
Json
\u198C
Python
\u198C
Perl
\x{198C}
PHP
\x{198C}
Ruby
\u{198C}
Rust
\u{198C}
Go
\u198C

Web

CSS
\00198C
HtmlDecimal
ᦌ
HtmlHexadecimal
ᦌ
Url
%E1%A6%8C

Code

MD5
0c980fad39af80c78e7ae37a454147cf
Sha1
71676e78876f150ba6af53007312035428af4e9a
Base64
4aaM

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u198C';
console.log(char);  // Output: ᦌ

Java:

char c = '\u198C';
System.out.println(c);  // Output: ᦌ

JSON:

{"text": "\u198C"}  // Value: ᦌ

Python:

char = '\u198C'
print(char)  # Output: ᦌ

Perl:

my $char = "\x{198C}";
print $char;  # Output: ᦌ

PHP:

$char = "\x{198C}";
echo $char;  // Output: ᦌ

Ruby:

char = "\u{198C}"
puts char  # Output: ᦌ

Rust:

let c = '\u{198C}';
println!("{}", c);  // Output: ᦌ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00198C";  /* Display: ᦌ */
}

HTML Decimal:

<p>HTML decimal: &#6540;</p>  <!-- Display: ᦌ -->

HTML Hexadecimal:

<p>HTML hex: &#x198C;</p>  <!-- Display: ᦌ -->

URL Encoding:

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

Encodings

MD5:

0c980fad39af80c78e7ae37a454147cf

SHA1:

71676e78876f150ba6af53007312035428af4e9a

Base64:

4aaM