Unicode Finder

"າ" U+0EB2(LAO VOWEL SIGN AA)

U+0EB2
ชื่อบล็อก
Lao
ชื่อ
LAO VOWEL SIGN AA

Programming

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

Web

CSS
\000EB2
HtmlDecimal
າ
HtmlHexadecimal
າ
Url
%E0%BA%B2

Code

MD5
9139e904eb30fd5e30ed9b3ed3fca32a
Sha1
b4cb80ce36980ea9a5eee5d19da1ea01b19d8cd7
Base64
4Lqy

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

Programming Languages

C:

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

JavaScript:

const char = '\u0EB2';
console.log(char);  // Output: າ

Java:

char c = '\u0EB2';
System.out.println(c);  // Output: າ

JSON:

{"text": "\u0EB2"}  // Value: າ

Python:

char = '\u0EB2'
print(char)  # Output: າ

Perl:

my $char = "\x{0EB2}";
print $char;  # Output: າ

PHP:

$char = "\x{0EB2}";
echo $char;  // Output: າ

Ruby:

char = "\u{0EB2}"
puts char  # Output: າ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3762;</p>  <!-- Display: າ -->

HTML Hexadecimal:

<p>HTML hex: &#x0EB2;</p>  <!-- Display: າ -->

URL Encoding:

// າ URL encoding
https://unicodefinder.com/search.php?query=%E0%BA%B2

Encodings

MD5:

9139e904eb30fd5e30ed9b3ed3fca32a

SHA1:

b4cb80ce36980ea9a5eee5d19da1ea01b19d8cd7

Base64:

4Lqy