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