Unicode Finder

"ᩍ" U+1A4D(TAI THAM LETTER I)

U+1A4D
Nume Bloc
Tai Tham
Nume
TAI THAM LETTER I

Programming

C
\u1A4D
JavaScript
\u1A4D
Java
\u1A4D
Json
\u1A4D
Python
\u1A4D
Perl
\x{1A4D}
PHP
\x{1A4D}
Ruby
\u{1A4D}
Rust
\u{1A4D}
Go
\u1A4D

Web

CSS
\001A4D
HtmlDecimal
ᩍ
HtmlHexadecimal
ᩍ
Url
%E1%A9%8D

Code

MD5
d24563cbe3c04f66081a27db65e29228
Sha1
9094b733a76e1c6e22578917d546d0ac24913602
Base64
4amN

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u1A4D';
console.log(char);  // Output: ᩍ

Java:

char c = '\u1A4D';
System.out.println(c);  // Output: ᩍ

JSON:

{"text": "\u1A4D"}  // Value: ᩍ

Python:

char = '\u1A4D'
print(char)  # Output: ᩍ

Perl:

my $char = "\x{1A4D}";
print $char;  # Output: ᩍ

PHP:

$char = "\x{1A4D}";
echo $char;  // Output: ᩍ

Ruby:

char = "\u{1A4D}"
puts char  # Output: ᩍ

Rust:

let c = '\u{1A4D}';
println!("{}", c);  // Output: ᩍ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001A4D";  /* Display: ᩍ */
}

HTML Decimal:

<p>HTML decimal: &#6733;</p>  <!-- Display: ᩍ -->

HTML Hexadecimal:

<p>HTML hex: &#x1A4D;</p>  <!-- Display: ᩍ -->

URL Encoding:

// ᩍ URL encoding
https://unicodefinder.com/search.php?query=%E1%A9%8D

Encodings

MD5:

d24563cbe3c04f66081a27db65e29228

SHA1:

9094b733a76e1c6e22578917d546d0ac24913602

Base64:

4amN