Unicode Finder

"ໂ" U+0EC2(LAO VOWEL SIGN O)

U+0EC2
ชื่อบล็อก
Lao
ชื่อ
LAO VOWEL SIGN O

Programming

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

Web

CSS
\000EC2
HtmlDecimal
ໂ
HtmlHexadecimal
ໂ
Url
%E0%BB%82

Code

MD5
db8e26cf3dd5b2019e04dd74418a28b5
Sha1
52432b259e617359e0a6f01d3af85dce8a556638
Base64
4LuC

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

Programming Languages

C:

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

JavaScript:

const char = '\u0EC2';
console.log(char);  // Output: ໂ

Java:

char c = '\u0EC2';
System.out.println(c);  // Output: ໂ

JSON:

{"text": "\u0EC2"}  // Value: ໂ

Python:

char = '\u0EC2'
print(char)  # Output: ໂ

Perl:

my $char = "\x{0EC2}";
print $char;  # Output: ໂ

PHP:

$char = "\x{0EC2}";
echo $char;  // Output: ໂ

Ruby:

char = "\u{0EC2}"
puts char  # Output: ໂ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3778;</p>  <!-- Display: ໂ -->

HTML Hexadecimal:

<p>HTML hex: &#x0EC2;</p>  <!-- Display: ໂ -->

URL Encoding:

// ໂ URL encoding
https://unicodefinder.com/search.php?query=%E0%BB%82

Encodings

MD5:

db8e26cf3dd5b2019e04dd74418a28b5

SHA1:

52432b259e617359e0a6f01d3af85dce8a556638

Base64:

4LuC