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