Unicode Finder

"જ" U+0A9C(GUJARATI LETTER JA)

U+0A9C
Nama Blok
Gujarati
Nama
GUJARATI LETTER JA

Programming

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

Web

CSS
\000A9C
HtmlDecimal
જ
HtmlHexadecimal
જ
Url
%E0%AA%9C

Code

MD5
2983626139aa6397a76ac5ea98a9b17d
Sha1
a1c7192e7e5a24a67ee350310ab1daaf8d872989
Base64
4Kqc

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u0A9C';
console.log(char);  // Output: જ

Java:

char c = '\u0A9C';
System.out.println(c);  // Output: જ

JSON:

{"text": "\u0A9C"}  // Value: જ

Python:

char = '\u0A9C'
print(char)  # Output: જ

Perl:

my $char = "\x{0A9C}";
print $char;  # Output: જ

PHP:

$char = "\x{0A9C}";
echo $char;  // Output: જ

Ruby:

char = "\u{0A9C}"
puts char  # Output: જ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#2716;</p>  <!-- Display: જ -->

HTML Hexadecimal:

<p>HTML hex: &#x0A9C;</p>  <!-- Display: જ -->

URL Encoding:

// જ URL encoding
https://unicodefinder.com/search.php?query=%E0%AA%9C

Encodings

MD5:

2983626139aa6397a76ac5ea98a9b17d

SHA1:

a1c7192e7e5a24a67ee350310ab1daaf8d872989

Base64:

4Kqc