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