Unicode Finder

"၀" U+1040(MYANMAR DIGIT ZERO)

U+1040
بلاک کا نام
Myanmar
نام
MYANMAR DIGIT ZERO

Programming

C
\u1040
JavaScript
\u1040
Java
\u1040
Json
\u1040
Python
\u1040
Perl
\x{1040}
PHP
\x{1040}
Ruby
\u{1040}
Rust
\u{1040}
Go
\u1040

Web

CSS
\001040
HtmlDecimal
၀
HtmlHexadecimal
၀
Url
%E1%81%80

Code

MD5
a78b7b5a2b69b0ebb26fc143f52a55db
Sha1
aa8d9bb5d4f1abd14b3d8c4517dfe1e2420faa1e
Base64
4YGA

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

Programming Languages

C:

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

JavaScript:

const char = '\u1040';
console.log(char);  // Output: ၀

Java:

char c = '\u1040';
System.out.println(c);  // Output: ၀

JSON:

{"text": "\u1040"}  // Value: ၀

Python:

char = '\u1040'
print(char)  # Output: ၀

Perl:

my $char = "\x{1040}";
print $char;  # Output: ၀

PHP:

$char = "\x{1040}";
echo $char;  // Output: ၀

Ruby:

char = "\u{1040}"
puts char  # Output: ၀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001040";  /* Display: ၀ */
}

HTML Decimal:

<p>HTML decimal: &#4160;</p>  <!-- Display: ၀ -->

HTML Hexadecimal:

<p>HTML hex: &#x1040;</p>  <!-- Display: ၀ -->

URL Encoding:

// ၀ URL encoding
https://unicodefinder.com/search.php?query=%E1%81%80

Encodings

MD5:

a78b7b5a2b69b0ebb26fc143f52a55db

SHA1:

aa8d9bb5d4f1abd14b3d8c4517dfe1e2420faa1e

Base64:

4YGA