Unicode Finder

"ན" U+0F53(TIBETAN LETTER NA)

U+0F53
Nama Blok
Tibetan
Nama
TIBETAN LETTER NA

Programming

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

Web

CSS
\000F53
HtmlDecimal
ན
HtmlHexadecimal
ན
Url
%E0%BD%93

Code

MD5
445701a67f4b41b04b4f19fdca5f7dd1
Sha1
84c76da86a4ac1799f9b15aa1ee8e7814077b946
Base64
4L2T

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u0F53';
console.log(char);  // Output: ན

Java:

char c = '\u0F53';
System.out.println(c);  // Output: ན

JSON:

{"text": "\u0F53"}  // Value: ན

Python:

char = '\u0F53'
print(char)  # Output: ན

Perl:

my $char = "\x{0F53}";
print $char;  # Output: ན

PHP:

$char = "\x{0F53}";
echo $char;  // Output: ན

Ruby:

char = "\u{0F53}"
puts char  # Output: ན

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3923;</p>  <!-- Display: ན -->

HTML Hexadecimal:

<p>HTML hex: &#x0F53;</p>  <!-- Display: ན -->

URL Encoding:

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

Encodings

MD5:

445701a67f4b41b04b4f19fdca5f7dd1

SHA1:

84c76da86a4ac1799f9b15aa1ee8e7814077b946

Base64:

4L2T