C:
char c = '\uBA56';
printf("%c\n", c); // Output: 멖
JavaScript:
const char = '\uBA56';
console.log(char); // Output: 멖
Java:
char c = '\uBA56';
System.out.println(c); // Output: 멖
JSON:
{"text": "\uBA56"} // Value: 멖
Python:
char = '\uBA56'
print(char) # Output: 멖
Perl:
my $char = "\x{BA56}";
print $char; # Output: 멖
PHP:
$char = "\x{BA56}";
echo $char; // Output: 멖
Ruby:
char = "\u{BA56}"
puts char # Output: 멖
Rust:
let c = '\u{BA56}';
println!("{}", c); // Output: 멖
Go:
char := '\uBA56'
fmt.Printf("%c\n", char) // Output: 멖
CSS:
/* CSS content property */
.element::before {
content: "\00BA56"; /* 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=%EB%A9%96
MD5:
1db55604560b42ef60d7904518a93eed
SHA1:
80e89a6ae788b5afbeaefbfa238b6e0501322d91
Base64:
66mW