C:
char c = '\u0EC6';
printf("%c\n", c); // Output: ໆ
JavaScript:
const char = '\u0EC6';
console.log(char); // Output: ໆ
Java:
char c = '\u0EC6';
System.out.println(c); // Output: ໆ
JSON:
{"text": "\u0EC6"} // Value: ໆ
Python:
char = '\u0EC6'
print(char) # Output: ໆ
Perl:
my $char = "\x{0EC6}";
print $char; # Output: ໆ
PHP:
$char = "\x{0EC6}";
echo $char; // Output: ໆ
Ruby:
char = "\u{0EC6}"
puts char # Output: ໆ
Rust:
let c = '\u{EC6}';
println!("{}", c); // Output: ໆ
Go:
char := '\u0EC6'
fmt.Printf("%c\n", char) // Output: ໆ
CSS:
/* CSS content property */
.element::before {
content: "\000EC6"; /* Display: ໆ */
}
HTML Decimal:
<p>HTML decimal: ໆ</p> <!-- Display: ໆ -->
HTML Hexadecimal:
<p>HTML hex: ໆ</p> <!-- Display: ໆ -->
URL Encoding:
// ໆ URL encoding
https://unicodefinder.com/search.php?query=%E0%BB%86
MD5:
a60ffc09b6a9d809808245d960af0a12
SHA1:
11bd774784f8653ed14e8ff67afcc23851e9acc8
Base64:
4LuG