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