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