Unicode Finder

"ओ" U+0913(DEVANAGARI LETTER O)

U+0913
ब्लॉक का नाम
Devanagari
नाम
DEVANAGARI LETTER O

Programming

C
\u0913
JavaScript
\u0913
Java
\u0913
Json
\u0913
Python
\u0913
Perl
\x{0913}
PHP
\x{0913}
Ruby
\u{0913}
Rust
\u{913}
Go
\u0913

Web

CSS
\000913
HtmlDecimal
ओ
HtmlHexadecimal
ओ
Url
%E0%A4%93

Code

MD5
3add83361b4ee88028ac5e9f1538a87f
Sha1
c307e833e2cd0c2cff2773e0a8906c4054484c2a
Base64
4KST

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

Programming Languages

C:

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

JavaScript:

const char = '\u0913';
console.log(char);  // Output: ओ

Java:

char c = '\u0913';
System.out.println(c);  // Output: ओ

JSON:

{"text": "\u0913"}  // Value: ओ

Python:

char = '\u0913'
print(char)  # Output: ओ

Perl:

my $char = "\x{0913}";
print $char;  # Output: ओ

PHP:

$char = "\x{0913}";
echo $char;  // Output: ओ

Ruby:

char = "\u{0913}"
puts char  # Output: ओ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000913";  /* Display: ओ */
}

HTML Decimal:

<p>HTML decimal: &#2323;</p>  <!-- Display: ओ -->

HTML Hexadecimal:

<p>HTML hex: &#x0913;</p>  <!-- Display: ओ -->

URL Encoding:

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

Encodings

MD5:

3add83361b4ee88028ac5e9f1538a87f

SHA1:

c307e833e2cd0c2cff2773e0a8906c4054484c2a

Base64:

4KST