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