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