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