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