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