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