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