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