C:
char c = '\u0158';
printf("%c\n", c); // Output: Ř
JavaScript:
const char = '\u0158';
console.log(char); // Output: Ř
Java:
char c = '\u0158';
System.out.println(c); // Output: Ř
JSON:
{"text": "\u0158"} // Value: Ř
Python:
char = '\u0158'
print(char) # Output: Ř
Perl:
my $char = "\x{0158}";
print $char; # Output: Ř
PHP:
$char = "\x{0158}";
echo $char; // Output: Ř
Ruby:
char = "\u{0158}"
puts char # Output: Ř
Rust:
let c = '\u{158}';
println!("{}", c); // Output: Ř
Go:
char := '\u0158'
fmt.Printf("%c\n", char) // Output: Ř
CSS:
/* CSS content property */
.element::before {
content: "\000158"; /* 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=%C5%98
MD5:
1a6a381715e135488c49de5019a9812e
SHA1:
f21f28b5e6b37c587c50c2b0d971d403fc938aa6
Base64:
xZg=