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