Unicode Finder

"ᥤ" U+1964(TAI LE LETTER I)

U+1964
ब्लॉक का नाम
Tai Le
नाम
TAI LE LETTER I

Programming

C
\u1964
JavaScript
\u1964
Java
\u1964
Json
\u1964
Python
\u1964
Perl
\x{1964}
PHP
\x{1964}
Ruby
\u{1964}
Rust
\u{1964}
Go
\u1964

Web

CSS
\001964
HtmlDecimal
ᥤ
HtmlHexadecimal
ᥤ
Url
%E1%A5%A4

Code

MD5
aac7bd1e175d92f18ec3963e8e01241e
Sha1
7d07d90e1cf4767a0f465dd24743c1c126b1d1e9
Base64
4aWk

उपयोग के उदाहरण

Programming Languages

C:

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

JavaScript:

const char = '\u1964';
console.log(char);  // Output: ᥤ

Java:

char c = '\u1964';
System.out.println(c);  // Output: ᥤ

JSON:

{"text": "\u1964"}  // Value: ᥤ

Python:

char = '\u1964'
print(char)  # Output: ᥤ

Perl:

my $char = "\x{1964}";
print $char;  # Output: ᥤ

PHP:

$char = "\x{1964}";
echo $char;  // Output: ᥤ

Ruby:

char = "\u{1964}"
puts char  # Output: ᥤ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001964";  /* Display: ᥤ */
}

HTML Decimal:

<p>HTML decimal: &#6500;</p>  <!-- Display: ᥤ -->

HTML Hexadecimal:

<p>HTML hex: &#x1964;</p>  <!-- Display: ᥤ -->

URL Encoding:

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

Encodings

MD5:

aac7bd1e175d92f18ec3963e8e01241e

SHA1:

7d07d90e1cf4767a0f465dd24743c1c126b1d1e9

Base64:

4aWk