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