Unicode Finder

"ဇ" U+1007(MYANMAR LETTER JA)

U+1007
ब्लॉक का नाम
Myanmar
नाम
MYANMAR LETTER JA

Programming

C
\u1007
JavaScript
\u1007
Java
\u1007
Json
\u1007
Python
\u1007
Perl
\x{1007}
PHP
\x{1007}
Ruby
\u{1007}
Rust
\u{1007}
Go
\u1007

Web

CSS
\001007
HtmlDecimal
ဇ
HtmlHexadecimal
ဇ
Url
%E1%80%87

Code

MD5
3a8872a8814c1eca442f60e7255e09f3
Sha1
1401aef9ccdfd78b4739a9e9ca7348739411297e
Base64
4YCH

उपयोग के उदाहरण

Programming Languages

C:

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

JavaScript:

const char = '\u1007';
console.log(char);  // Output: ဇ

Java:

char c = '\u1007';
System.out.println(c);  // Output: ဇ

JSON:

{"text": "\u1007"}  // Value: ဇ

Python:

char = '\u1007'
print(char)  # Output: ဇ

Perl:

my $char = "\x{1007}";
print $char;  # Output: ဇ

PHP:

$char = "\x{1007}";
echo $char;  // Output: ဇ

Ruby:

char = "\u{1007}"
puts char  # Output: ဇ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001007";  /* Display: ဇ */
}

HTML Decimal:

<p>HTML decimal: &#4103;</p>  <!-- Display: ဇ -->

HTML Hexadecimal:

<p>HTML hex: &#x1007;</p>  <!-- Display: ဇ -->

URL Encoding:

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

Encodings

MD5:

3a8872a8814c1eca442f60e7255e09f3

SHA1:

1401aef9ccdfd78b4739a9e9ca7348739411297e

Base64:

4YCH