Unicode Finder

"ୃ" U+0B43(ORIYA VOWEL SIGN VOCALIC R)

U+0B43
Nama Blok
Oriya
Nama
ORIYA VOWEL SIGN VOCALIC R

Programming

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

Web

CSS
\000B43
HtmlDecimal
ୃ
HtmlHexadecimal
ୃ
Url
%E0%AD%83

Code

MD5
44d71d82ac2b342a4cca4422048f6581
Sha1
a95569b35e10326fdf194b4aff445b5222248276
Base64
4K2D

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u0B43';
console.log(char);  // Output: ୃ

Java:

char c = '\u0B43';
System.out.println(c);  // Output: ୃ

JSON:

{"text": "\u0B43"}  // Value: ୃ

Python:

char = '\u0B43'
print(char)  # Output: ୃ

Perl:

my $char = "\x{0B43}";
print $char;  # Output: ୃ

PHP:

$char = "\x{0B43}";
echo $char;  // Output: ୃ

Ruby:

char = "\u{0B43}"
puts char  # Output: ୃ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#2883;</p>  <!-- Display: ୃ -->

HTML Hexadecimal:

<p>HTML hex: &#x0B43;</p>  <!-- Display: ୃ -->

URL Encoding:

// ୃ URL encoding
https://unicodefinder.com/search.php?query=%E0%AD%83

Encodings

MD5:

44d71d82ac2b342a4cca4422048f6581

SHA1:

a95569b35e10326fdf194b4aff445b5222248276

Base64:

4K2D