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