C:
char c = '\u0105';
printf("%c\n", c); // Output: ą
JavaScript:
const char = '\u0105';
console.log(char); // Output: ą
Java:
char c = '\u0105';
System.out.println(c); // Output: ą
JSON:
{"text": "\u0105"} // Value: ą
Python:
char = '\u0105'
print(char) # Output: ą
Perl:
my $char = "\x{0105}";
print $char; # Output: ą
PHP:
$char = "\x{0105}";
echo $char; // Output: ą
Ruby:
char = "\u{0105}"
puts char # Output: ą
Rust:
let c = '\u{105}';
println!("{}", c); // Output: ą
Go:
char := '\u0105'
fmt.Printf("%c\n", char) // Output: ą
CSS:
/* CSS content property */
.element::before {
content: "\000105"; /* 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%85
MD5:
5786eab716295401c073064c3ec82a44
SHA1:
8165af18aea4fd895dc1737116bd836be7096e03
Base64:
xIU=