Unicode Finder

"ଏ" U+0B0F(ORIYA LETTER E)

U+0B0F
اسم الكتلة
Oriya
الاسم
ORIYA LETTER E

Programming

C
\u0B0F
JavaScript
\u0B0F
Java
\u0B0F
Json
\u0B0F
Python
\u0B0F
Perl
\x{0B0F}
PHP
\x{0B0F}
Ruby
\u{0B0F}
Rust
\u{B0F}
Go
\u0B0F

Web

CSS
\000B0F
HtmlDecimal
ଏ
HtmlHexadecimal
ଏ
Url
%E0%AC%8F

Code

MD5
2cd9ae0ce2999dfc018f3e21fdd5e6ee
Sha1
28f4c0cab60cc5e6b22510f063ccfbd433b795ed
Base64
4KyP

أمثلة الاستخدام

Programming Languages

C:

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

JavaScript:

const char = '\u0B0F';
console.log(char);  // Output: ଏ

Java:

char c = '\u0B0F';
System.out.println(c);  // Output: ଏ

JSON:

{"text": "\u0B0F"}  // Value: ଏ

Python:

char = '\u0B0F'
print(char)  # Output: ଏ

Perl:

my $char = "\x{0B0F}";
print $char;  # Output: ଏ

PHP:

$char = "\x{0B0F}";
echo $char;  // Output: ଏ

Ruby:

char = "\u{0B0F}"
puts char  # Output: ଏ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000B0F";  /* Display: ଏ */
}

HTML Decimal:

<p>HTML decimal: &#2831;</p>  <!-- Display: ଏ -->

HTML Hexadecimal:

<p>HTML hex: &#x0B0F;</p>  <!-- Display: ଏ -->

URL Encoding:

// ଏ URL encoding
https://unicodefinder.com/search.php?query=%E0%AC%8F

Encodings

MD5:

2cd9ae0ce2999dfc018f3e21fdd5e6ee

SHA1:

28f4c0cab60cc5e6b22510f063ccfbd433b795ed

Base64:

4KyP