C:
char c = '\u0106';
printf("%c\n", c); // Output: Ć
JavaScript:
const char = '\u0106';
console.log(char); // Output: Ć
Java:
char c = '\u0106';
System.out.println(c); // Output: Ć
JSON:
{"text": "\u0106"} // Value: Ć
Python:
char = '\u0106'
print(char) # Output: Ć
Perl:
my $char = "\x{0106}";
print $char; # Output: Ć
PHP:
$char = "\x{0106}";
echo $char; // Output: Ć
Ruby:
char = "\u{0106}"
puts char # Output: Ć
Rust:
let c = '\u{106}';
println!("{}", c); // Output: Ć
Go:
char := '\u0106'
fmt.Printf("%c\n", char) // Output: Ć
CSS:
/* CSS content property */
.element::before {
content: "\000106"; /* 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%86
MD5:
eb321c0305dec4e2eaf013e7daea503e
SHA1:
b0b54cc14aea4647a6bbfbcfce46f5601a43fb7d
Base64:
xIY=