Unicode Finder

"༅" U+0F05(TIBETAN MARK CLOSING YIG MGO SGAB MA)

U+0F05
ชื่อบล็อก
Tibetan
ชื่อ
TIBETAN MARK CLOSING YIG MGO SGAB MA

Programming

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

Web

CSS
\000F05
HtmlDecimal
༅
HtmlHexadecimal
༅
Url
%E0%BC%85

Code

MD5
a51d76b8c8fbf3487f8815e1980358fc
Sha1
efca3adbb0b0ad11a8ea774ed708c7cf95d8d9c3
Base64
4LyF

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

Programming Languages

C:

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

JavaScript:

const char = '\u0F05';
console.log(char);  // Output: ༅

Java:

char c = '\u0F05';
System.out.println(c);  // Output: ༅

JSON:

{"text": "\u0F05"}  // Value: ༅

Python:

char = '\u0F05'
print(char)  # Output: ༅

Perl:

my $char = "\x{0F05}";
print $char;  # Output: ༅

PHP:

$char = "\x{0F05}";
echo $char;  // Output: ༅

Ruby:

char = "\u{0F05}"
puts char  # Output: ༅

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3845;</p>  <!-- Display: ༅ -->

HTML Hexadecimal:

<p>HTML hex: &#x0F05;</p>  <!-- Display: ༅ -->

URL Encoding:

// ༅ URL encoding
https://unicodefinder.com/search.php?query=%E0%BC%85

Encodings

MD5:

a51d76b8c8fbf3487f8815e1980358fc

SHA1:

efca3adbb0b0ad11a8ea774ed708c7cf95d8d9c3

Base64:

4LyF