C:
char c = '\uB9E5';
printf("%c\n", c); // Output: 맥
JavaScript:
const char = '\uB9E5';
console.log(char); // Output: 맥
Java:
char c = '\uB9E5';
System.out.println(c); // Output: 맥
JSON:
{"text": "\uB9E5"} // Value: 맥
Python:
char = '\uB9E5'
print(char) # Output: 맥
Perl:
my $char = "\x{B9E5}";
print $char; # Output: 맥
PHP:
$char = "\x{B9E5}";
echo $char; // Output: 맥
Ruby:
char = "\u{B9E5}"
puts char # Output: 맥
Rust:
let c = '\u{B9E5}';
println!("{}", c); // Output: 맥
Go:
char := '\uB9E5'
fmt.Printf("%c\n", char) // Output: 맥
CSS:
/* CSS content property */
.element::before {
content: "\00B9E5"; /* 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%A5
MD5:
9e164d758af23d766ccd09473e6f510c
SHA1:
6e5f10ed97287474e9cd7ed7a3f2f0ee4d594604
Base64:
66el