C:
char c = '\u00BF';
printf("%c\n", c); // Output: ¿
JavaScript:
const char = '\u00BF';
console.log(char); // Output: ¿
Java:
char c = '\u00BF';
System.out.println(c); // Output: ¿
JSON:
{"text": "\u00BF"} // Value: ¿
Python:
char = '\u00BF'
print(char) # Output: ¿
Perl:
my $char = "\x{00BF}";
print $char; # Output: ¿
PHP:
$char = "\x{00BF}";
echo $char; // Output: ¿
Ruby:
char = "\u{00BF}"
puts char # Output: ¿
Rust:
let c = '\u{BF}';
println!("{}", c); // Output: ¿
Go:
char := '\u00BF'
fmt.Printf("%c\n", char) // Output: ¿
CSS:
/* CSS content property */
.element::before {
content: "\0000BF"; /* 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=%C2%BF
MD5:
e7073452a6b74095b007a4172beaf551
SHA1:
1b989a74aa129709a0cc8800181299f757cef7fc
Base64:
wr8=