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