Unicode Finder

"မ" U+1019(MYANMAR LETTER MA)

U+1019
بلاک کا نام
Myanmar
نام
MYANMAR LETTER MA

Programming

C
\u1019
JavaScript
\u1019
Java
\u1019
Json
\u1019
Python
\u1019
Perl
\x{1019}
PHP
\x{1019}
Ruby
\u{1019}
Rust
\u{1019}
Go
\u1019

Web

CSS
\001019
HtmlDecimal
မ
HtmlHexadecimal
မ
Url
%E1%80%99

Code

MD5
b8c978c9d07c48dab6efce9188b5a35d
Sha1
9c60d4dad17d79d26fdbe0fc473c86b5bd519441
Base64
4YCZ

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

Programming Languages

C:

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

JavaScript:

const char = '\u1019';
console.log(char);  // Output: မ

Java:

char c = '\u1019';
System.out.println(c);  // Output: မ

JSON:

{"text": "\u1019"}  // Value: မ

Python:

char = '\u1019'
print(char)  # Output: မ

Perl:

my $char = "\x{1019}";
print $char;  # Output: မ

PHP:

$char = "\x{1019}";
echo $char;  // Output: မ

Ruby:

char = "\u{1019}"
puts char  # Output: မ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001019";  /* Display: မ */
}

HTML Decimal:

<p>HTML decimal: &#4121;</p>  <!-- Display: မ -->

HTML Hexadecimal:

<p>HTML hex: &#x1019;</p>  <!-- Display: မ -->

URL Encoding:

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

Encodings

MD5:

b8c978c9d07c48dab6efce9188b5a35d

SHA1:

9c60d4dad17d79d26fdbe0fc473c86b5bd519441

Base64:

4YCZ