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