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