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