Unicode Finder

"ख" U+0916(DEVANAGARI LETTER KHA)

U+0916
ब्लॉक का नाम
Devanagari
नाम
DEVANAGARI LETTER KHA

Programming

C
\u0916
JavaScript
\u0916
Java
\u0916
Json
\u0916
Python
\u0916
Perl
\x{0916}
PHP
\x{0916}
Ruby
\u{0916}
Rust
\u{916}
Go
\u0916

Web

CSS
\000916
HtmlDecimal
ख
HtmlHexadecimal
ख
Url
%E0%A4%96

Code

MD5
9eafaecb7eb04ac6fda45940659ea87f
Sha1
57294b4cbf36073498cdbac5d3baa39219f21de3
Base64
4KSW

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

Programming Languages

C:

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

JavaScript:

const char = '\u0916';
console.log(char);  // Output: ख

Java:

char c = '\u0916';
System.out.println(c);  // Output: ख

JSON:

{"text": "\u0916"}  // Value: ख

Python:

char = '\u0916'
print(char)  # Output: ख

Perl:

my $char = "\x{0916}";
print $char;  # Output: ख

PHP:

$char = "\x{0916}";
echo $char;  // Output: ख

Ruby:

char = "\u{0916}"
puts char  # Output: ख

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000916";  /* Display: ख */
}

HTML Decimal:

<p>HTML decimal: &#2326;</p>  <!-- Display: ख -->

HTML Hexadecimal:

<p>HTML hex: &#x0916;</p>  <!-- Display: ख -->

URL Encoding:

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

Encodings

MD5:

9eafaecb7eb04ac6fda45940659ea87f

SHA1:

57294b4cbf36073498cdbac5d3baa39219f21de3

Base64:

4KSW