C:
char c = '\u010D';
printf("%c\n", c); // Output: č
JavaScript:
const char = '\u010D';
console.log(char); // Output: č
Java:
char c = '\u010D';
System.out.println(c); // Output: č
JSON:
{"text": "\u010D"} // Value: č
Python:
char = '\u010D'
print(char) # Output: č
Perl:
my $char = "\x{010D}";
print $char; # Output: č
PHP:
$char = "\x{010D}";
echo $char; // Output: č
Ruby:
char = "\u{010D}"
puts char # Output: č
Rust:
let c = '\u{10D}';
println!("{}", c); // Output: č
Go:
char := '\u010D'
fmt.Printf("%c\n", char) // Output: č
CSS:
/* CSS content property */
.element::before {
content: "\00010D"; /* 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=%C4%8D
MD5:
aedf5025ed111cb843d8f4bec6da22f0
SHA1:
77d8db7bee3a4615c3e2a2f81c2bb87dc014ba5b
Base64:
xI0=