C:
char c = '\uBB64';
printf("%c\n", c); // Output: 뭤
JavaScript:
const char = '\uBB64';
console.log(char); // Output: 뭤
Java:
char c = '\uBB64';
System.out.println(c); // Output: 뭤
JSON:
{"text": "\uBB64"} // Value: 뭤
Python:
char = '\uBB64'
print(char) # Output: 뭤
Perl:
my $char = "\x{BB64}";
print $char; # Output: 뭤
PHP:
$char = "\x{BB64}";
echo $char; // Output: 뭤
Ruby:
char = "\u{BB64}"
puts char # Output: 뭤
Rust:
let c = '\u{BB64}';
println!("{}", c); // Output: 뭤
Go:
char := '\uBB64'
fmt.Printf("%c\n", char) // Output: 뭤
CSS:
/* CSS content property */
.element::before {
content: "\00BB64"; /* 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%AD%A4
MD5:
b8a2a83dab0153eda490a1f017847a21
SHA1:
1abb6f27b61b07740b3e4174bc0541086ca8377b
Base64:
662k