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