Unicode Finder

"ऩ" U+0929(DEVANAGARI LETTER NNNA)

U+0929
ब्लॉक का नाम
Devanagari
नाम
DEVANAGARI LETTER NNNA

Programming

C
\u0929
JavaScript
\u0929
Java
\u0929
Json
\u0929
Python
\u0929
Perl
\x{0929}
PHP
\x{0929}
Ruby
\u{0929}
Rust
\u{929}
Go
\u0929

Web

CSS
\000929
HtmlDecimal
ऩ
HtmlHexadecimal
ऩ
Url
%E0%A4%A9

Code

MD5
bbdf58914b00c658dfbc0edcbd397f68
Sha1
93f316d8736e18846ea4a5f3208a27a44eb5f541
Base64
4KSp

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

Programming Languages

C:

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

JavaScript:

const char = '\u0929';
console.log(char);  // Output: ऩ

Java:

char c = '\u0929';
System.out.println(c);  // Output: ऩ

JSON:

{"text": "\u0929"}  // Value: ऩ

Python:

char = '\u0929'
print(char)  # Output: ऩ

Perl:

my $char = "\x{0929}";
print $char;  # Output: ऩ

PHP:

$char = "\x{0929}";
echo $char;  // Output: ऩ

Ruby:

char = "\u{0929}"
puts char  # Output: ऩ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000929";  /* Display: ऩ */
}

HTML Decimal:

<p>HTML decimal: &#2345;</p>  <!-- Display: ऩ -->

HTML Hexadecimal:

<p>HTML hex: &#x0929;</p>  <!-- Display: ऩ -->

URL Encoding:

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

Encodings

MD5:

bbdf58914b00c658dfbc0edcbd397f68

SHA1:

93f316d8736e18846ea4a5f3208a27a44eb5f541

Base64:

4KSp