Unicode Finder

"ૃ" U+0AC3(GUJARATI VOWEL SIGN VOCALIC R)

U+0AC3
Nama Blok
Gujarati
Nama
GUJARATI VOWEL SIGN VOCALIC R

Programming

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

Web

CSS
\000AC3
HtmlDecimal
ૃ
HtmlHexadecimal
ૃ
Url
%E0%AB%83

Code

MD5
dbf33731c1e67d94555328a9ebe8bea5
Sha1
19833e0a502a46a17a428ed1976ecf18d6868047
Base64
4KuD

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u0AC3';
console.log(char);  // Output: ૃ

Java:

char c = '\u0AC3';
System.out.println(c);  // Output: ૃ

JSON:

{"text": "\u0AC3"}  // Value: ૃ

Python:

char = '\u0AC3'
print(char)  # Output: ૃ

Perl:

my $char = "\x{0AC3}";
print $char;  # Output: ૃ

PHP:

$char = "\x{0AC3}";
echo $char;  // Output: ૃ

Ruby:

char = "\u{0AC3}"
puts char  # Output: ૃ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#2755;</p>  <!-- Display: ૃ -->

HTML Hexadecimal:

<p>HTML hex: &#x0AC3;</p>  <!-- Display: ૃ -->

URL Encoding:

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

Encodings

MD5:

dbf33731c1e67d94555328a9ebe8bea5

SHA1:

19833e0a502a46a17a428ed1976ecf18d6868047

Base64:

4KuD