C:
char c = '\u0E43';
printf("%c\n", c); // Output: ใ
JavaScript:
const char = '\u0E43';
console.log(char); // Output: ใ
Java:
char c = '\u0E43';
System.out.println(c); // Output: ใ
JSON:
{"text": "\u0E43"} // Value: ใ
Python:
char = '\u0E43'
print(char) # Output: ใ
Perl:
my $char = "\x{0E43}";
print $char; # Output: ใ
PHP:
$char = "\x{0E43}";
echo $char; // Output: ใ
Ruby:
char = "\u{0E43}"
puts char # Output: ใ
Rust:
let c = '\u{E43}';
println!("{}", c); // Output: ใ
Go:
char := '\u0E43'
fmt.Printf("%c\n", char) // Output: ใ
CSS:
/* CSS content property */
.element::before {
content: "\000E43"; /* 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%B9%83
MD5:
34650b7ef1cc4de6994deb0715542681
SHA1:
99b2428ac1249628218e0571b0646cc9b0adc7e2
Base64:
4LmD