Unicode Finder

"ະ" U+0EB0(LAO VOWEL SIGN A)

U+0EB0
ชื่อบล็อก
Lao
ชื่อ
LAO VOWEL SIGN A

Programming

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

Web

CSS
\000EB0
HtmlDecimal
ະ
HtmlHexadecimal
ະ
Url
%E0%BA%B0

Code

MD5
aa0e33d9c6f2e44e02c8b45af99f6232
Sha1
8929d36f0828f18cbf2ac35a02ce88c23438009e
Base64
4Lqw

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

Programming Languages

C:

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

JavaScript:

const char = '\u0EB0';
console.log(char);  // Output: ະ

Java:

char c = '\u0EB0';
System.out.println(c);  // Output: ະ

JSON:

{"text": "\u0EB0"}  // Value: ະ

Python:

char = '\u0EB0'
print(char)  # Output: ະ

Perl:

my $char = "\x{0EB0}";
print $char;  # Output: ະ

PHP:

$char = "\x{0EB0}";
echo $char;  // Output: ະ

Ruby:

char = "\u{0EB0}"
puts char  # Output: ະ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3760;</p>  <!-- Display: ະ -->

HTML Hexadecimal:

<p>HTML hex: &#x0EB0;</p>  <!-- Display: ະ -->

URL Encoding:

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

Encodings

MD5:

aa0e33d9c6f2e44e02c8b45af99f6232

SHA1:

8929d36f0828f18cbf2ac35a02ce88c23438009e

Base64:

4Lqw