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