Unicode Finder

"ᥲ" U+1972(TAI LE LETTER TONE-4)

U+1972
Block Name
Tai Le
Name
TAI LE LETTER TONE-4

Programming

C
\u1972
JavaScript
\u1972
Java
\u1972
Json
\u1972
Python
\u1972
Perl
\x{1972}
PHP
\x{1972}
Ruby
\u{1972}
Rust
\u{1972}
Go
\u1972

Web

CSS
\001972
HtmlDecimal
ᥲ
HtmlHexadecimal
ᥲ
Url
%E1%A5%B2

Code

MD5
ec12fcca01d6e41c8d732a3053822ee9
Sha1
f471f5135fb78a0753fb3a8aefe62112bd812e88
Base64
4aWy

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u1972';
console.log(char);  // Output: ᥲ

Java:

char c = '\u1972';
System.out.println(c);  // Output: ᥲ

JSON:

{"text": "\u1972"}  // Value: ᥲ

Python:

char = '\u1972'
print(char)  # Output: ᥲ

Perl:

my $char = "\x{1972}";
print $char;  # Output: ᥲ

PHP:

$char = "\x{1972}";
echo $char;  // Output: ᥲ

Ruby:

char = "\u{1972}"
puts char  # Output: ᥲ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001972";  /* Display: ᥲ */
}

HTML Decimal:

<p>HTML decimal: &#6514;</p>  <!-- Display: ᥲ -->

HTML Hexadecimal:

<p>HTML hex: &#x1972;</p>  <!-- Display: ᥲ -->

URL Encoding:

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

Encodings

MD5:

ec12fcca01d6e41c8d732a3053822ee9

SHA1:

f471f5135fb78a0753fb3a8aefe62112bd812e88

Base64:

4aWy