Unicode Finder

"ଆ" U+0B06(ORIYA LETTER AA)

U+0B06
שם בלוק
Oriya
שם
ORIYA LETTER AA

Programming

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

Web

CSS
\000B06
HtmlDecimal
ଆ
HtmlHexadecimal
ଆ
Url
%E0%AC%86

Code

MD5
baf20307c838844f3780381413ac72c3
Sha1
10821b0ce20f9b5ae1ef696c9802b5cc6b5202eb
Base64
4KyG

דוגמאות שימוש

Programming Languages

C:

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

JavaScript:

const char = '\u0B06';
console.log(char);  // Output: ଆ

Java:

char c = '\u0B06';
System.out.println(c);  // Output: ଆ

JSON:

{"text": "\u0B06"}  // Value: ଆ

Python:

char = '\u0B06'
print(char)  # Output: ଆ

Perl:

my $char = "\x{0B06}";
print $char;  # Output: ଆ

PHP:

$char = "\x{0B06}";
echo $char;  // Output: ଆ

Ruby:

char = "\u{0B06}"
puts char  # Output: ଆ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#2822;</p>  <!-- Display: ଆ -->

HTML Hexadecimal:

<p>HTML hex: &#x0B06;</p>  <!-- Display: ଆ -->

URL Encoding:

// ଆ URL encoding
https://unicodefinder.com/search.php?query=%E0%AC%86

Encodings

MD5:

baf20307c838844f3780381413ac72c3

SHA1:

10821b0ce20f9b5ae1ef696c9802b5cc6b5202eb

Base64:

4KyG