C:
char c = '\u0121';
printf("%c\n", c); // Output: ġ
JavaScript:
const char = '\u0121';
console.log(char); // Output: ġ
Java:
char c = '\u0121';
System.out.println(c); // Output: ġ
JSON:
{"text": "\u0121"} // Value: ġ
Python:
char = '\u0121'
print(char) # Output: ġ
Perl:
my $char = "\x{0121}";
print $char; # Output: ġ
PHP:
$char = "\x{0121}";
echo $char; // Output: ġ
Ruby:
char = "\u{0121}"
puts char # Output: ġ
Rust:
let c = '\u{121}';
println!("{}", c); // Output: ġ
Go:
char := '\u0121'
fmt.Printf("%c\n", char) // Output: ġ
CSS:
/* CSS content property */
.element::before {
content: "\000121"; /* 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%A1
MD5:
05414f059aac0ade1f49521ba4878e5c
SHA1:
f80355338d4a4cbd4d9397941a8dbb7e1cc7f486
Base64:
xKE=