C:
char c = '\u0E4C';
printf("%c\n", c); // Output: ์
JavaScript:
const char = '\u0E4C';
console.log(char); // Output: ์
Java:
char c = '\u0E4C';
System.out.println(c); // Output: ์
JSON:
{"text": "\u0E4C"} // Value: ์
Python:
char = '\u0E4C'
print(char) # Output: ์
Perl:
my $char = "\x{0E4C}";
print $char; # Output: ์
PHP:
$char = "\x{0E4C}";
echo $char; // Output: ์
Ruby:
char = "\u{0E4C}"
puts char # Output: ์
Rust:
let c = '\u{E4C}';
println!("{}", c); // Output: ์
Go:
char := '\u0E4C'
fmt.Printf("%c\n", char) // Output: ์
CSS:
/* CSS content property */
.element::before {
content: "\000E4C"; /* 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%8C
MD5:
563e7736e72949defa6e35b3edd812c1
SHA1:
073d84adafd716130b608f86b201fe2e6e539b39
Base64:
4LmM