Unicode Finder

"ं" U+0902(DEVANAGARI SIGN ANUSVARA)

U+0902
Nama Blok
Devanagari
Nama
DEVANAGARI SIGN ANUSVARA

Programming

C
\u0902
JavaScript
\u0902
Java
\u0902
Json
\u0902
Python
\u0902
Perl
\x{0902}
PHP
\x{0902}
Ruby
\u{0902}
Rust
\u{902}
Go
\u0902

Web

CSS
\000902
HtmlDecimal
ं
HtmlHexadecimal
ं
Url
%E0%A4%82

Code

MD5
a0d929ea65cf27f13d0fcf5190a84ec9
Sha1
e6e07f2eca6958b590e1c79b4cea3124e35b4d99
Base64
4KSC

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u0902';
console.log(char);  // Output: ं

Java:

char c = '\u0902';
System.out.println(c);  // Output: ं

JSON:

{"text": "\u0902"}  // Value: ं

Python:

char = '\u0902'
print(char)  # Output: ं

Perl:

my $char = "\x{0902}";
print $char;  # Output: ं

PHP:

$char = "\x{0902}";
echo $char;  // Output: ं

Ruby:

char = "\u{0902}"
puts char  # Output: ं

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000902";  /* Display: ं */
}

HTML Decimal:

<p>HTML decimal: &#2306;</p>  <!-- Display: ं -->

HTML Hexadecimal:

<p>HTML hex: &#x0902;</p>  <!-- Display: ं -->

URL Encoding:

// ं URL encoding
https://unicodefinder.com/search.php?query=%E0%A4%82

Encodings

MD5:

a0d929ea65cf27f13d0fcf5190a84ec9

SHA1:

e6e07f2eca6958b590e1c79b4cea3124e35b4d99

Base64:

4KSC