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