Unicode Finder

"໋" U+0ECB(LAO TONE MAI CATAWA)

U+0ECB
ชื่อบล็อก
Lao
ชื่อ
LAO TONE MAI CATAWA

Programming

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

Web

CSS
\000ECB
HtmlDecimal
໋
HtmlHexadecimal
໋
Url
%E0%BB%8B

Code

MD5
a1a5f3f3ba0a19beacf213441791d796
Sha1
269d4975903b3a44eeb2d5c9616e33d243a60511
Base64
4LuL

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

Programming Languages

C:

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

JavaScript:

const char = '\u0ECB';
console.log(char);  // Output: ໋

Java:

char c = '\u0ECB';
System.out.println(c);  // Output: ໋

JSON:

{"text": "\u0ECB"}  // Value: ໋

Python:

char = '\u0ECB'
print(char)  # Output: ໋

Perl:

my $char = "\x{0ECB}";
print $char;  # Output: ໋

PHP:

$char = "\x{0ECB}";
echo $char;  // Output: ໋

Ruby:

char = "\u{0ECB}"
puts char  # Output: ໋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#3787;</p>  <!-- Display: ໋ -->

HTML Hexadecimal:

<p>HTML hex: &#x0ECB;</p>  <!-- Display: ໋ -->

URL Encoding:

// ໋ URL encoding
https://unicodefinder.com/search.php?query=%E0%BB%8B

Encodings

MD5:

a1a5f3f3ba0a19beacf213441791d796

SHA1:

269d4975903b3a44eeb2d5c9616e33d243a60511

Base64:

4LuL