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