Unicode Finder

"ໄ" U+0EC4(LAO VOWEL SIGN AI)

U+0EC4
ชื่อบล็อก
Lao
ชื่อ
LAO VOWEL SIGN AI

Programming

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

Web

CSS
\000EC4
HtmlDecimal
ໄ
HtmlHexadecimal
ໄ
Url
%E0%BB%84

Code

MD5
4e372f826f49360e1d3106206ca39cba
Sha1
5852f431c00b2c931fe2f95bddb5f8cde6b5d241
Base64
4LuE

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

Programming Languages

C:

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

JavaScript:

const char = '\u0EC4';
console.log(char);  // Output: ໄ

Java:

char c = '\u0EC4';
System.out.println(c);  // Output: ໄ

JSON:

{"text": "\u0EC4"}  // Value: ໄ

Python:

char = '\u0EC4'
print(char)  # Output: ໄ

Perl:

my $char = "\x{0EC4}";
print $char;  # Output: ໄ

PHP:

$char = "\x{0EC4}";
echo $char;  // Output: ໄ

Ruby:

char = "\u{0EC4}"
puts char  # Output: ໄ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3780;</p>  <!-- Display: ໄ -->

HTML Hexadecimal:

<p>HTML hex: &#x0EC4;</p>  <!-- Display: ໄ -->

URL Encoding:

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

Encodings

MD5:

4e372f826f49360e1d3106206ca39cba

SHA1:

5852f431c00b2c931fe2f95bddb5f8cde6b5d241

Base64:

4LuE