C:
char c = '\u0107';
printf("%c\n", c); // Output: ć
JavaScript:
const char = '\u0107';
console.log(char); // Output: ć
Java:
char c = '\u0107';
System.out.println(c); // Output: ć
JSON:
{"text": "\u0107"} // Value: ć
Python:
char = '\u0107'
print(char) # Output: ć
Perl:
my $char = "\x{0107}";
print $char; # Output: ć
PHP:
$char = "\x{0107}";
echo $char; // Output: ć
Ruby:
char = "\u{0107}"
puts char # Output: ć
Rust:
let c = '\u{107}';
println!("{}", c); // Output: ć
Go:
char := '\u0107'
fmt.Printf("%c\n", char) // Output: ć
CSS:
/* CSS content property */
.element::before {
content: "\000107"; /* 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%87
MD5:
1ec9282ed0028938324a7062dac1c6dc
SHA1:
307952d36f3109016626ca8934fab15670934ef6
Base64:
xIc=