Unicode Finder

"ठ" U+0920(DEVANAGARI LETTER TTHA)

U+0920
ब्लॉक का नाम
Devanagari
नाम
DEVANAGARI LETTER TTHA

Programming

C
\u0920
JavaScript
\u0920
Java
\u0920
Json
\u0920
Python
\u0920
Perl
\x{0920}
PHP
\x{0920}
Ruby
\u{0920}
Rust
\u{920}
Go
\u0920

Web

CSS
\000920
HtmlDecimal
ठ
HtmlHexadecimal
ठ
Url
%E0%A4%A0

Code

MD5
cca9eff81fa7ee56cd19bd41d68f8f48
Sha1
7d4f7609682d0b439b962d13ce1b53d5065d9cd0
Base64
4KSg

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

Programming Languages

C:

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

JavaScript:

const char = '\u0920';
console.log(char);  // Output: ठ

Java:

char c = '\u0920';
System.out.println(c);  // Output: ठ

JSON:

{"text": "\u0920"}  // Value: ठ

Python:

char = '\u0920'
print(char)  # Output: ठ

Perl:

my $char = "\x{0920}";
print $char;  # Output: ठ

PHP:

$char = "\x{0920}";
echo $char;  // Output: ठ

Ruby:

char = "\u{0920}"
puts char  # Output: ठ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000920";  /* Display: ठ */
}

HTML Decimal:

<p>HTML decimal: &#2336;</p>  <!-- Display: ठ -->

HTML Hexadecimal:

<p>HTML hex: &#x0920;</p>  <!-- Display: ठ -->

URL Encoding:

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

Encodings

MD5:

cca9eff81fa7ee56cd19bd41d68f8f48

SHA1:

7d4f7609682d0b439b962d13ce1b53d5065d9cd0

Base64:

4KSg