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