C:
char c = '\u0115';
printf("%c\n", c); // Output: ĕ
JavaScript:
const char = '\u0115';
console.log(char); // Output: ĕ
Java:
char c = '\u0115';
System.out.println(c); // Output: ĕ
JSON:
{"text": "\u0115"} // Value: ĕ
Python:
char = '\u0115'
print(char) # Output: ĕ
Perl:
my $char = "\x{0115}";
print $char; # Output: ĕ
PHP:
$char = "\x{0115}";
echo $char; // Output: ĕ
Ruby:
char = "\u{0115}"
puts char # Output: ĕ
Rust:
let c = '\u{115}';
println!("{}", c); // Output: ĕ
Go:
char := '\u0115'
fmt.Printf("%c\n", char) // Output: ĕ
CSS:
/* CSS content property */
.element::before {
content: "\000115"; /* 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%95
MD5:
91fe06d71c82cc68e39710518195db1e
SHA1:
91d776777770db7a918acc6fbae2aadd76bcbc6f
Base64:
xJU=