C:
char c = '\u017D';
printf("%c\n", c); // Output: Ž
JavaScript:
const char = '\u017D';
console.log(char); // Output: Ž
Java:
char c = '\u017D';
System.out.println(c); // Output: Ž
JSON:
{"text": "\u017D"} // Value: Ž
Python:
char = '\u017D'
print(char) # Output: Ž
Perl:
my $char = "\x{017D}";
print $char; # Output: Ž
PHP:
$char = "\x{017D}";
echo $char; // Output: Ž
Ruby:
char = "\u{017D}"
puts char # Output: Ž
Rust:
let c = '\u{17D}';
println!("{}", c); // Output: Ž
Go:
char := '\u017D'
fmt.Printf("%c\n", char) // Output: Ž
CSS:
/* CSS content property */
.element::before {
content: "\00017D"; /* 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%BD
MD5:
dfc71cac09dc66e2c0d78bdfed0fe915
SHA1:
eb392f2b267da14d7c5a23e30838e0d32614161e
Base64:
xb0=