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