Unicode Finder

"છ" U+0A9B(GUJARATI LETTER CHA)

U+0A9B
שם בלוק
Gujarati
שם
GUJARATI LETTER CHA

Programming

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

Web

CSS
\000A9B
HtmlDecimal
છ
HtmlHexadecimal
છ
Url
%E0%AA%9B

Code

MD5
2a8b4dcd7f190134aba52c533f3bfa4f
Sha1
c2a4236edb37b5aa9cde21b4e55758bdfc775d6d
Base64
4Kqb

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

Programming Languages

C:

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

JavaScript:

const char = '\u0A9B';
console.log(char);  // Output: છ

Java:

char c = '\u0A9B';
System.out.println(c);  // Output: છ

JSON:

{"text": "\u0A9B"}  // Value: છ

Python:

char = '\u0A9B'
print(char)  # Output: છ

Perl:

my $char = "\x{0A9B}";
print $char;  # Output: છ

PHP:

$char = "\x{0A9B}";
echo $char;  // Output: છ

Ruby:

char = "\u{0A9B}"
puts char  # Output: છ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#2715;</p>  <!-- Display: છ -->

HTML Hexadecimal:

<p>HTML hex: &#x0A9B;</p>  <!-- Display: છ -->

URL Encoding:

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

Encodings

MD5:

2a8b4dcd7f190134aba52c533f3bfa4f

SHA1:

c2a4236edb37b5aa9cde21b4e55758bdfc775d6d

Base64:

4Kqb