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