Unicode Finder

"ழ" U+0BB4(TAMIL LETTER LLLA)

U+0BB4
Nama Blok
Tamil
Nama
TAMIL LETTER LLLA

Programming

C
\u0BB4
JavaScript
\u0BB4
Java
\u0BB4
Json
\u0BB4
Python
\u0BB4
Perl
\x{0BB4}
PHP
\x{0BB4}
Ruby
\u{0BB4}
Rust
\u{BB4}
Go
\u0BB4

Web

CSS
\000BB4
HtmlDecimal
ழ
HtmlHexadecimal
ழ
Url
%E0%AE%B4

Code

MD5
423aef89966adbdbe8c2e57f4c7fea29
Sha1
3fe4557b7c05cec6328b1afaa1d44f9911431e9d
Base64
4K60

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u0BB4';
console.log(char);  // Output: ழ

Java:

char c = '\u0BB4';
System.out.println(c);  // Output: ழ

JSON:

{"text": "\u0BB4"}  // Value: ழ

Python:

char = '\u0BB4'
print(char)  # Output: ழ

Perl:

my $char = "\x{0BB4}";
print $char;  # Output: ழ

PHP:

$char = "\x{0BB4}";
echo $char;  // Output: ழ

Ruby:

char = "\u{0BB4}"
puts char  # Output: ழ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000BB4";  /* Display: ழ */
}

HTML Decimal:

<p>HTML decimal: &#2996;</p>  <!-- Display: ழ -->

HTML Hexadecimal:

<p>HTML hex: &#x0BB4;</p>  <!-- Display: ழ -->

URL Encoding:

// ழ URL encoding
https://unicodefinder.com/search.php?query=%E0%AE%B4

Encodings

MD5:

423aef89966adbdbe8c2e57f4c7fea29

SHA1:

3fe4557b7c05cec6328b1afaa1d44f9911431e9d

Base64:

4K60