Unicode Finder

"ઝ" U+0A9D(GUJARATI LETTER JHA)

U+0A9D
שם בלוק
Gujarati
שם
GUJARATI LETTER JHA

Programming

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

Web

CSS
\000A9D
HtmlDecimal
ઝ
HtmlHexadecimal
ઝ
Url
%E0%AA%9D

Code

MD5
448ca36709843164d6ea9efdc79feb5f
Sha1
d0c87e2d95eb351ec03b2d17bd86ebe92fccd049
Base64
4Kqd

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

Programming Languages

C:

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

JavaScript:

const char = '\u0A9D';
console.log(char);  // Output: ઝ

Java:

char c = '\u0A9D';
System.out.println(c);  // Output: ઝ

JSON:

{"text": "\u0A9D"}  // Value: ઝ

Python:

char = '\u0A9D'
print(char)  # Output: ઝ

Perl:

my $char = "\x{0A9D}";
print $char;  # Output: ઝ

PHP:

$char = "\x{0A9D}";
echo $char;  // Output: ઝ

Ruby:

char = "\u{0A9D}"
puts char  # Output: ઝ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#2717;</p>  <!-- Display: ઝ -->

HTML Hexadecimal:

<p>HTML hex: &#x0A9D;</p>  <!-- Display: ઝ -->

URL Encoding:

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

Encodings

MD5:

448ca36709843164d6ea9efdc79feb5f

SHA1:

d0c87e2d95eb351ec03b2d17bd86ebe92fccd049

Base64:

4Kqd