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