C:
char c = '\uBA4B';
printf("%c\n", c); // Output: 멋
JavaScript:
const char = '\uBA4B';
console.log(char); // Output: 멋
Java:
char c = '\uBA4B';
System.out.println(c); // Output: 멋
JSON:
{"text": "\uBA4B"} // Value: 멋
Python:
char = '\uBA4B'
print(char) # Output: 멋
Perl:
my $char = "\x{BA4B}";
print $char; # Output: 멋
PHP:
$char = "\x{BA4B}";
echo $char; // Output: 멋
Ruby:
char = "\u{BA4B}"
puts char # Output: 멋
Rust:
let c = '\u{BA4B}';
println!("{}", c); // Output: 멋
Go:
char := '\uBA4B'
fmt.Printf("%c\n", char) // Output: 멋
CSS:
/* CSS content property */
.element::before {
content: "\00BA4B"; /* 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%8B
MD5:
0994fe82d75825f1c206d97d6020b938
SHA1:
27e818878aea3a4f38badcdfd0d75586cf7be527
Base64:
66mL