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