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