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