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