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