Unicode Finder

"ສ" U+0EAA(LAO LETTER SO SUNG)

U+0EAA
ชื่อบล็อก
Lao
ชื่อ
LAO LETTER SO SUNG

Programming

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

Web

CSS
\000EAA
HtmlDecimal
ສ
HtmlHexadecimal
ສ
Url
%E0%BA%AA

Code

MD5
5de311617d7e2cfb9560734728f079c6
Sha1
7299f2fd5e866e38f84888c071db3775cbc12b21
Base64
4Lqq

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

Programming Languages

C:

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

JavaScript:

const char = '\u0EAA';
console.log(char);  // Output: ສ

Java:

char c = '\u0EAA';
System.out.println(c);  // Output: ສ

JSON:

{"text": "\u0EAA"}  // Value: ສ

Python:

char = '\u0EAA'
print(char)  # Output: ສ

Perl:

my $char = "\x{0EAA}";
print $char;  # Output: ສ

PHP:

$char = "\x{0EAA}";
echo $char;  // Output: ສ

Ruby:

char = "\u{0EAA}"
puts char  # Output: ສ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3754;</p>  <!-- Display: ສ -->

HTML Hexadecimal:

<p>HTML hex: &#x0EAA;</p>  <!-- Display: ສ -->

URL Encoding:

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

Encodings

MD5:

5de311617d7e2cfb9560734728f079c6

SHA1:

7299f2fd5e866e38f84888c071db3775cbc12b21

Base64:

4Lqq