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