Unicode Finder

"མ" U+0F58(TIBETAN LETTER MA)

U+0F58
ब्लॉक का नाम
Tibetan
नाम
TIBETAN LETTER MA

Programming

C
\u0F58
JavaScript
\u0F58
Java
\u0F58
Json
\u0F58
Python
\u0F58
Perl
\x{0F58}
PHP
\x{0F58}
Ruby
\u{0F58}
Rust
\u{F58}
Go
\u0F58

Web

CSS
\000F58
HtmlDecimal
མ
HtmlHexadecimal
མ
Url
%E0%BD%98

Code

MD5
a5981166148702208840af98c62ecba6
Sha1
336910d95ff95161902eaaa69d2191910c95f876
Base64
4L2Y

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

Programming Languages

C:

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

JavaScript:

const char = '\u0F58';
console.log(char);  // Output: མ

Java:

char c = '\u0F58';
System.out.println(c);  // Output: མ

JSON:

{"text": "\u0F58"}  // Value: མ

Python:

char = '\u0F58'
print(char)  # Output: མ

Perl:

my $char = "\x{0F58}";
print $char;  # Output: མ

PHP:

$char = "\x{0F58}";
echo $char;  // Output: མ

Ruby:

char = "\u{0F58}"
puts char  # Output: མ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000F58";  /* Display: མ */
}

HTML Decimal:

<p>HTML decimal: &#3928;</p>  <!-- Display: མ -->

HTML Hexadecimal:

<p>HTML hex: &#x0F58;</p>  <!-- Display: མ -->

URL Encoding:

// མ URL encoding
https://unicodefinder.com/search.php?query=%E0%BD%98

Encodings

MD5:

a5981166148702208840af98c62ecba6

SHA1:

336910d95ff95161902eaaa69d2191910c95f876

Base64:

4L2Y