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