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