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