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