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