C:
char c = '\u0101';
printf("%c\n", c); // Output: ā
JavaScript:
const char = '\u0101';
console.log(char); // Output: ā
Java:
char c = '\u0101';
System.out.println(c); // Output: ā
JSON:
{"text": "\u0101"} // Value: ā
Python:
char = '\u0101'
print(char) # Output: ā
Perl:
my $char = "\x{0101}";
print $char; # Output: ā
PHP:
$char = "\x{0101}";
echo $char; // Output: ā
Ruby:
char = "\u{0101}"
puts char # Output: ā
Rust:
let c = '\u{101}';
println!("{}", c); // Output: ā
Go:
char := '\u0101'
fmt.Printf("%c\n", char) // Output: ā
CSS:
/* CSS content property */
.element::before {
content: "\000101"; /* 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%81
MD5:
909d791004c8a7d69c0aeb938a3337bc
SHA1:
78a4468de0673f9f91e9000c7cf55e2bafe4df29
Base64:
xIE=