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