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