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