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