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