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