C:
char c = '\u015F';
printf("%c\n", c); // Output: ş
JavaScript:
const char = '\u015F';
console.log(char); // Output: ş
Java:
char c = '\u015F';
System.out.println(c); // Output: ş
JSON:
{"text": "\u015F"} // Value: ş
Python:
char = '\u015F'
print(char) # Output: ş
Perl:
my $char = "\x{015F}";
print $char; # Output: ş
PHP:
$char = "\x{015F}";
echo $char; // Output: ş
Ruby:
char = "\u{015F}"
puts char # Output: ş
Rust:
let c = '\u{15F}';
println!("{}", c); // Output: ş
Go:
char := '\u015F'
fmt.Printf("%c\n", char) // Output: ş
CSS:
/* CSS content property */
.element::before {
content: "\00015F"; /* 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%9F
MD5:
f77d0141628dbee6c01939f685637c85
SHA1:
36e7fba73c1161ecee70557ecd3f88312abf38bf
Base64:
xZ8=