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