C:
char c = '\u0FCF';
printf("%c\n", c); // Output: ࿏
JavaScript:
const char = '\u0FCF';
console.log(char); // Output: ࿏
Java:
char c = '\u0FCF';
System.out.println(c); // Output: ࿏
JSON:
{"text": "\u0FCF"} // Value: ࿏
Python:
char = '\u0FCF'
print(char) # Output: ࿏
Perl:
my $char = "\x{0FCF}";
print $char; # Output: ࿏
PHP:
$char = "\x{0FCF}";
echo $char; // Output: ࿏
Ruby:
char = "\u{0FCF}"
puts char # Output: ࿏
Rust:
let c = '\u{FCF}';
println!("{}", c); // Output: ࿏
Go:
char := '\u0FCF'
fmt.Printf("%c\n", char) // Output: ࿏
CSS:
/* CSS content property */
.element::before {
content: "\000FCF"; /* 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=%E0%BF%8F
MD5:
df38921ea833e9a554a780c475c9382d
SHA1:
e0c08c7b39f628b9c7aced20c5a644d0009d7067
Base64:
4L+P