Unicode Finder

"၂" U+1042(MYANMAR DIGIT TWO)

U+1042
ब्लॉक का नाम
Myanmar
नाम
MYANMAR DIGIT TWO

Programming

C
\u1042
JavaScript
\u1042
Java
\u1042
Json
\u1042
Python
\u1042
Perl
\x{1042}
PHP
\x{1042}
Ruby
\u{1042}
Rust
\u{1042}
Go
\u1042

Web

CSS
\001042
HtmlDecimal
၂
HtmlHexadecimal
၂
Url
%E1%81%82

Code

MD5
c2def753a00f9ac60f4ca0d33dbb61ad
Sha1
24643ed18b0d06d81239d82704480cb351cefc77
Base64
4YGC

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

Programming Languages

C:

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

JavaScript:

const char = '\u1042';
console.log(char);  // Output: ၂

Java:

char c = '\u1042';
System.out.println(c);  // Output: ၂

JSON:

{"text": "\u1042"}  // Value: ၂

Python:

char = '\u1042'
print(char)  # Output: ၂

Perl:

my $char = "\x{1042}";
print $char;  # Output: ၂

PHP:

$char = "\x{1042}";
echo $char;  // Output: ၂

Ruby:

char = "\u{1042}"
puts char  # Output: ၂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001042";  /* Display: ၂ */
}

HTML Decimal:

<p>HTML decimal: &#4162;</p>  <!-- Display: ၂ -->

HTML Hexadecimal:

<p>HTML hex: &#x1042;</p>  <!-- Display: ၂ -->

URL Encoding:

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

Encodings

MD5:

c2def753a00f9ac60f4ca0d33dbb61ad

SHA1:

24643ed18b0d06d81239d82704480cb351cefc77

Base64:

4YGC