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