Unicode Finder

"ॳ" U+0973(DEVANAGARI LETTER OE)

U+0973
ब्लॉक का नाम
Devanagari
नाम
DEVANAGARI LETTER OE

Programming

C
\u0973
JavaScript
\u0973
Java
\u0973
Json
\u0973
Python
\u0973
Perl
\x{0973}
PHP
\x{0973}
Ruby
\u{0973}
Rust
\u{973}
Go
\u0973

Web

CSS
\000973
HtmlDecimal
ॳ
HtmlHexadecimal
ॳ
Url
%E0%A5%B3

Code

MD5
0b6898fb157ba3def4ccebb9023e46c1
Sha1
861ed3feb8cb9df1ed6fecc291e6f709ae4c443c
Base64
4KWz

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

Programming Languages

C:

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

JavaScript:

const char = '\u0973';
console.log(char);  // Output: ॳ

Java:

char c = '\u0973';
System.out.println(c);  // Output: ॳ

JSON:

{"text": "\u0973"}  // Value: ॳ

Python:

char = '\u0973'
print(char)  # Output: ॳ

Perl:

my $char = "\x{0973}";
print $char;  # Output: ॳ

PHP:

$char = "\x{0973}";
echo $char;  // Output: ॳ

Ruby:

char = "\u{0973}"
puts char  # Output: ॳ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000973";  /* Display: ॳ */
}

HTML Decimal:

<p>HTML decimal: &#2419;</p>  <!-- Display: ॳ -->

HTML Hexadecimal:

<p>HTML hex: &#x0973;</p>  <!-- Display: ॳ -->

URL Encoding:

// ॳ URL encoding
https://unicodefinder.com/search.php?query=%E0%A5%B3

Encodings

MD5:

0b6898fb157ba3def4ccebb9023e46c1

SHA1:

861ed3feb8cb9df1ed6fecc291e6f709ae4c443c

Base64:

4KWz