Unicode Finder

"ൌ" U+0D4C(MALAYALAM VOWEL SIGN AU)

U+0D4C
Nama Blok
Malayalam
Nama
MALAYALAM VOWEL SIGN AU

Programming

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

Web

CSS
\000D4C
HtmlDecimal
ൌ
HtmlHexadecimal
ൌ
Url
%E0%B5%8C

Code

MD5
2c1fdc834f213e4b4a15b978def629cd
Sha1
36d0cc5e60d7b71378ca4e562b86a3d11586d2dc
Base64
4LWM

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u0D4C';
console.log(char);  // Output: ൌ

Java:

char c = '\u0D4C';
System.out.println(c);  // Output: ൌ

JSON:

{"text": "\u0D4C"}  // Value: ൌ

Python:

char = '\u0D4C'
print(char)  # Output: ൌ

Perl:

my $char = "\x{0D4C}";
print $char;  # Output: ൌ

PHP:

$char = "\x{0D4C}";
echo $char;  // Output: ൌ

Ruby:

char = "\u{0D4C}"
puts char  # Output: ൌ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3404;</p>  <!-- Display: ൌ -->

HTML Hexadecimal:

<p>HTML hex: &#x0D4C;</p>  <!-- Display: ൌ -->

URL Encoding:

// ൌ URL encoding
https://unicodefinder.com/search.php?query=%E0%B5%8C

Encodings

MD5:

2c1fdc834f213e4b4a15b978def629cd

SHA1:

36d0cc5e60d7b71378ca4e562b86a3d11586d2dc

Base64:

4LWM