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