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