Unicode Finder

"ॐ" U+0950(DEVANAGARI OM)

U+0950
ब्लॉक का नाम
Devanagari
नाम
DEVANAGARI OM

Programming

C
\u0950
JavaScript
\u0950
Java
\u0950
Json
\u0950
Python
\u0950
Perl
\x{0950}
PHP
\x{0950}
Ruby
\u{0950}
Rust
\u{950}
Go
\u0950

Web

CSS
\000950
HtmlDecimal
ॐ
HtmlHexadecimal
ॐ
Url
%E0%A5%90

Code

MD5
45232dbc4c6de8038a4d95adeecdb68a
Sha1
c1954c23c431b4b9534b6acd05de0cec5c0efe59
Base64
4KWQ

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

Programming Languages

C:

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

JavaScript:

const char = '\u0950';
console.log(char);  // Output: ॐ

Java:

char c = '\u0950';
System.out.println(c);  // Output: ॐ

JSON:

{"text": "\u0950"}  // Value: ॐ

Python:

char = '\u0950'
print(char)  # Output: ॐ

Perl:

my $char = "\x{0950}";
print $char;  # Output: ॐ

PHP:

$char = "\x{0950}";
echo $char;  // Output: ॐ

Ruby:

char = "\u{0950}"
puts char  # Output: ॐ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000950";  /* Display: ॐ */
}

HTML Decimal:

<p>HTML decimal: &#2384;</p>  <!-- Display: ॐ -->

HTML Hexadecimal:

<p>HTML hex: &#x0950;</p>  <!-- Display: ॐ -->

URL Encoding:

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

Encodings

MD5:

45232dbc4c6de8038a4d95adeecdb68a

SHA1:

c1954c23c431b4b9534b6acd05de0cec5c0efe59

Base64:

4KWQ