C:
char c = '\u00DF';
printf("%c\n", c); // Output: ß
JavaScript:
const char = '\u00DF';
console.log(char); // Output: ß
Java:
char c = '\u00DF';
System.out.println(c); // Output: ß
JSON:
{"text": "\u00DF"} // Value: ß
Python:
char = '\u00DF'
print(char) # Output: ß
Perl:
my $char = "\x{00DF}";
print $char; # Output: ß
PHP:
$char = "\x{00DF}";
echo $char; // Output: ß
Ruby:
char = "\u{00DF}"
puts char # Output: ß
Rust:
let c = '\u{DF}';
println!("{}", c); // Output: ß
Go:
char := '\u00DF'
fmt.Printf("%c\n", char) // Output: ß
CSS:
/* CSS content property */
.element::before {
content: "\0000DF"; /* 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=%C3%9F
MD5:
e11ce22edb052b40813b1e145b704775
SHA1:
00b39d61cc9b61a36437c4de643ec56b831e36d5
Base64:
w58=