Unicode Finder

"ཟ" U+0F5F(TIBETAN LETTER ZA)

U+0F5F
ชื่อบล็อก
Tibetan
ชื่อ
TIBETAN LETTER ZA

Programming

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

Web

CSS
\000F5F
HtmlDecimal
ཟ
HtmlHexadecimal
ཟ
Url
%E0%BD%9F

Code

MD5
06fdf58e626cc7afc0b31d5cfc3c767e
Sha1
df40e131158a49b090c83a722238fde89f085531
Base64
4L2f

ตัวอย่างการใช้งาน

Programming Languages

C:

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

JavaScript:

const char = '\u0F5F';
console.log(char);  // Output: ཟ

Java:

char c = '\u0F5F';
System.out.println(c);  // Output: ཟ

JSON:

{"text": "\u0F5F"}  // Value: ཟ

Python:

char = '\u0F5F'
print(char)  # Output: ཟ

Perl:

my $char = "\x{0F5F}";
print $char;  # Output: ཟ

PHP:

$char = "\x{0F5F}";
echo $char;  // Output: ཟ

Ruby:

char = "\u{0F5F}"
puts char  # Output: ཟ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3935;</p>  <!-- Display: ཟ -->

HTML Hexadecimal:

<p>HTML hex: &#x0F5F;</p>  <!-- Display: ཟ -->

URL Encoding:

// ཟ URL encoding
https://unicodefinder.com/search.php?query=%E0%BD%9F

Encodings

MD5:

06fdf58e626cc7afc0b31d5cfc3c767e

SHA1:

df40e131158a49b090c83a722238fde89f085531

Base64:

4L2f