C:
char c = '\u0156';
printf("%c\n", c); // Output: Ŗ
JavaScript:
const char = '\u0156';
console.log(char); // Output: Ŗ
Java:
char c = '\u0156';
System.out.println(c); // Output: Ŗ
JSON:
{"text": "\u0156"} // Value: Ŗ
Python:
char = '\u0156'
print(char) # Output: Ŗ
Perl:
my $char = "\x{0156}";
print $char; # Output: Ŗ
PHP:
$char = "\x{0156}";
echo $char; // Output: Ŗ
Ruby:
char = "\u{0156}"
puts char # Output: Ŗ
Rust:
let c = '\u{156}';
println!("{}", c); // Output: Ŗ
Go:
char := '\u0156'
fmt.Printf("%c\n", char) // Output: Ŗ
CSS:
/* CSS content property */
.element::before {
content: "\000156"; /* 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%96
MD5:
a82dc695dbd97b5f6a6bbe01c01bcf6a
SHA1:
907aba9bf7d2ef12777369e05eb66ff2ff1ac29e
Base64:
xZY=