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