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