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