Unicode Finder

"ၛ" U+105B(MYANMAR LETTER MON JHA)

U+105B
بلاک کا نام
Myanmar
نام
MYANMAR LETTER MON JHA

Programming

C
\u105B
JavaScript
\u105B
Java
\u105B
Json
\u105B
Python
\u105B
Perl
\x{105B}
PHP
\x{105B}
Ruby
\u{105B}
Rust
\u{105B}
Go
\u105B

Web

CSS
\00105B
HtmlDecimal
ၛ
HtmlHexadecimal
ၛ
Url
%E1%81%9B

Code

MD5
7233d5e23c5465ab3988dc7eaf6ae0ea
Sha1
8470baac0064900ed165640ea6f1edf591df8430
Base64
4YGb

استعمال کی مثالیں

Programming Languages

C:

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

JavaScript:

const char = '\u105B';
console.log(char);  // Output: ၛ

Java:

char c = '\u105B';
System.out.println(c);  // Output: ၛ

JSON:

{"text": "\u105B"}  // Value: ၛ

Python:

char = '\u105B'
print(char)  # Output: ၛ

Perl:

my $char = "\x{105B}";
print $char;  # Output: ၛ

PHP:

$char = "\x{105B}";
echo $char;  // Output: ၛ

Ruby:

char = "\u{105B}"
puts char  # Output: ၛ

Rust:

let c = '\u{105B}';
println!("{}", c);  // Output: ၛ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00105B";  /* Display: ၛ */
}

HTML Decimal:

<p>HTML decimal: &#4187;</p>  <!-- Display: ၛ -->

HTML Hexadecimal:

<p>HTML hex: &#x105B;</p>  <!-- Display: ၛ -->

URL Encoding:

// ၛ URL encoding
https://unicodefinder.com/search.php?query=%E1%81%9B

Encodings

MD5:

7233d5e23c5465ab3988dc7eaf6ae0ea

SHA1:

8470baac0064900ed165640ea6f1edf591df8430

Base64:

4YGb