Unicode Finder

"ड" U+0921(DEVANAGARI LETTER DDA)

U+0921
ब्लॉक का नाम
Devanagari
नाम
DEVANAGARI LETTER DDA

Programming

C
\u0921
JavaScript
\u0921
Java
\u0921
Json
\u0921
Python
\u0921
Perl
\x{0921}
PHP
\x{0921}
Ruby
\u{0921}
Rust
\u{921}
Go
\u0921

Web

CSS
\000921
HtmlDecimal
ड
HtmlHexadecimal
ड
Url
%E0%A4%A1

Code

MD5
6aece2a6a078cd7dcf15cca26b9d0bd8
Sha1
3f651ec50f8986617943ac7996e31317db68bd48
Base64
4KSh

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

Programming Languages

C:

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

JavaScript:

const char = '\u0921';
console.log(char);  // Output: ड

Java:

char c = '\u0921';
System.out.println(c);  // Output: ड

JSON:

{"text": "\u0921"}  // Value: ड

Python:

char = '\u0921'
print(char)  # Output: ड

Perl:

my $char = "\x{0921}";
print $char;  # Output: ड

PHP:

$char = "\x{0921}";
echo $char;  // Output: ड

Ruby:

char = "\u{0921}"
puts char  # Output: ड

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000921";  /* Display: ड */
}

HTML Decimal:

<p>HTML decimal: &#2337;</p>  <!-- Display: ड -->

HTML Hexadecimal:

<p>HTML hex: &#x0921;</p>  <!-- Display: ड -->

URL Encoding:

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

Encodings

MD5:

6aece2a6a078cd7dcf15cca26b9d0bd8

SHA1:

3f651ec50f8986617943ac7996e31317db68bd48

Base64:

4KSh