Unicode Finder

"୴" U+0B74(ORIYA FRACTION THREE QUARTERS)

U+0B74
Nama Blok
Oriya
Nama
ORIYA FRACTION THREE QUARTERS

Programming

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

Web

CSS
\000B74
HtmlDecimal
୴
HtmlHexadecimal
୴
Url
%E0%AD%B4

Code

MD5
c5fc83e4e23987890653d159de616708
Sha1
e8ff62936a4f4c8fcdad7ba289fff51e6240fc1f
Base64
4K20

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u0B74';
console.log(char);  // Output: ୴

Java:

char c = '\u0B74';
System.out.println(c);  // Output: ୴

JSON:

{"text": "\u0B74"}  // Value: ୴

Python:

char = '\u0B74'
print(char)  # Output: ୴

Perl:

my $char = "\x{0B74}";
print $char;  # Output: ୴

PHP:

$char = "\x{0B74}";
echo $char;  // Output: ୴

Ruby:

char = "\u{0B74}"
puts char  # Output: ୴

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#2932;</p>  <!-- Display: ୴ -->

HTML Hexadecimal:

<p>HTML hex: &#x0B74;</p>  <!-- Display: ୴ -->

URL Encoding:

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

Encodings

MD5:

c5fc83e4e23987890653d159de616708

SHA1:

e8ff62936a4f4c8fcdad7ba289fff51e6240fc1f

Base64:

4K20