C:
char c = '\u0157';
printf("%c\n", c); // Output: ŗ
JavaScript:
const char = '\u0157';
console.log(char); // Output: ŗ
Java:
char c = '\u0157';
System.out.println(c); // Output: ŗ
JSON:
{"text": "\u0157"} // Value: ŗ
Python:
char = '\u0157'
print(char) # Output: ŗ
Perl:
my $char = "\x{0157}";
print $char; # Output: ŗ
PHP:
$char = "\x{0157}";
echo $char; // Output: ŗ
Ruby:
char = "\u{0157}"
puts char # Output: ŗ
Rust:
let c = '\u{157}';
println!("{}", c); // Output: ŗ
Go:
char := '\u0157'
fmt.Printf("%c\n", char) // Output: ŗ
CSS:
/* CSS content property */
.element::before {
content: "\000157"; /* 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%97
MD5:
759643f17f23d13db26cb9d95ce96343
SHA1:
7cf44a64a33d2705b7c70459b1e194657357890c
Base64:
xZc=