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