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