Unicode Finder

"ᥩ" U+1969(TAI LE LETTER O)

U+1969
Block Name
Tai Le
Name
TAI LE LETTER O

Programming

C
\u1969
JavaScript
\u1969
Java
\u1969
Json
\u1969
Python
\u1969
Perl
\x{1969}
PHP
\x{1969}
Ruby
\u{1969}
Rust
\u{1969}
Go
\u1969

Web

CSS
\001969
HtmlDecimal
ᥩ
HtmlHexadecimal
ᥩ
Url
%E1%A5%A9

Code

MD5
f8767f63270d1acdee82c0c714a6aa11
Sha1
8030ae0fcc9b3ac5b3a8fbb906c4c799733a0269
Base64
4aWp

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u1969';
console.log(char);  // Output: ᥩ

Java:

char c = '\u1969';
System.out.println(c);  // Output: ᥩ

JSON:

{"text": "\u1969"}  // Value: ᥩ

Python:

char = '\u1969'
print(char)  # Output: ᥩ

Perl:

my $char = "\x{1969}";
print $char;  # Output: ᥩ

PHP:

$char = "\x{1969}";
echo $char;  // Output: ᥩ

Ruby:

char = "\u{1969}"
puts char  # Output: ᥩ

Rust:

let c = '\u{1969}';
println!("{}", c);  // Output: ᥩ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001969";  /* Display: ᥩ */
}

HTML Decimal:

<p>HTML decimal: &#6505;</p>  <!-- Display: ᥩ -->

HTML Hexadecimal:

<p>HTML hex: &#x1969;</p>  <!-- Display: ᥩ -->

URL Encoding:

// ᥩ URL encoding
https://unicodefinder.com/search.php?query=%E1%A5%A9

Encodings

MD5:

f8767f63270d1acdee82c0c714a6aa11

SHA1:

8030ae0fcc9b3ac5b3a8fbb906c4c799733a0269

Base64:

4aWp