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