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