C:
char c = '\u011B';
printf("%c\n", c); // Output: ě
JavaScript:
const char = '\u011B';
console.log(char); // Output: ě
Java:
char c = '\u011B';
System.out.println(c); // Output: ě
JSON:
{"text": "\u011B"} // Value: ě
Python:
char = '\u011B'
print(char) # Output: ě
Perl:
my $char = "\x{011B}";
print $char; # Output: ě
PHP:
$char = "\x{011B}";
echo $char; // Output: ě
Ruby:
char = "\u{011B}"
puts char # Output: ě
Rust:
let c = '\u{11B}';
println!("{}", c); // Output: ě
Go:
char := '\u011B'
fmt.Printf("%c\n", char) // Output: ě
CSS:
/* CSS content property */
.element::before {
content: "\00011B"; /* 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=%C4%9B
MD5:
a6ee485f14145c51e56ca89dca901307
SHA1:
9125bdefc80959d811e18600c1893a3295a7e652
Base64:
xJs=