C:
char c = '\u0160';
printf("%c\n", c); // Output: Š
JavaScript:
const char = '\u0160';
console.log(char); // Output: Š
Java:
char c = '\u0160';
System.out.println(c); // Output: Š
JSON:
{"text": "\u0160"} // Value: Š
Python:
char = '\u0160'
print(char) # Output: Š
Perl:
my $char = "\x{0160}";
print $char; # Output: Š
PHP:
$char = "\x{0160}";
echo $char; // Output: Š
Ruby:
char = "\u{0160}"
puts char # Output: Š
Rust:
let c = '\u{160}';
println!("{}", c); // Output: Š
Go:
char := '\u0160'
fmt.Printf("%c\n", char) // Output: Š
CSS:
/* CSS content property */
.element::before {
content: "\000160"; /* 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%A0
MD5:
220c250afd334afbb51b64b757ed8680
SHA1:
d34ab0a864b45ce31df7b4105396b6640fad6317
Base64:
xaA=