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