Unicode Finder

"न" U+0928(DEVANAGARI LETTER NA)

U+0928
ब्लॉक का नाम
Devanagari
नाम
DEVANAGARI LETTER NA

Programming

C
\u0928
JavaScript
\u0928
Java
\u0928
Json
\u0928
Python
\u0928
Perl
\x{0928}
PHP
\x{0928}
Ruby
\u{0928}
Rust
\u{928}
Go
\u0928

Web

CSS
\000928
HtmlDecimal
न
HtmlHexadecimal
न
Url
%E0%A4%A8

Code

MD5
797ec1b18f403b31e38b74ef216cc4d0
Sha1
1ae2a92283272a952da5b07c83fd068eb4f37820
Base64
4KSo

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

Programming Languages

C:

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

JavaScript:

const char = '\u0928';
console.log(char);  // Output: न

Java:

char c = '\u0928';
System.out.println(c);  // Output: न

JSON:

{"text": "\u0928"}  // Value: न

Python:

char = '\u0928'
print(char)  # Output: न

Perl:

my $char = "\x{0928}";
print $char;  # Output: न

PHP:

$char = "\x{0928}";
echo $char;  // Output: न

Ruby:

char = "\u{0928}"
puts char  # Output: न

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000928";  /* Display: न */
}

HTML Decimal:

<p>HTML decimal: &#2344;</p>  <!-- Display: न -->

HTML Hexadecimal:

<p>HTML hex: &#x0928;</p>  <!-- Display: न -->

URL Encoding:

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

Encodings

MD5:

797ec1b18f403b31e38b74ef216cc4d0

SHA1:

1ae2a92283272a952da5b07c83fd068eb4f37820

Base64:

4KSo