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