C:
char c = '\u0122';
printf("%c\n", c); // Output: Ģ
JavaScript:
const char = '\u0122';
console.log(char); // Output: Ģ
Java:
char c = '\u0122';
System.out.println(c); // Output: Ģ
JSON:
{"text": "\u0122"} // Value: Ģ
Python:
char = '\u0122'
print(char) # Output: Ģ
Perl:
my $char = "\x{0122}";
print $char; # Output: Ģ
PHP:
$char = "\x{0122}";
echo $char; // Output: Ģ
Ruby:
char = "\u{0122}"
puts char # Output: Ģ
Rust:
let c = '\u{122}';
println!("{}", c); // Output: Ģ
Go:
char := '\u0122'
fmt.Printf("%c\n", char) // Output: Ģ
CSS:
/* CSS content property */
.element::before {
content: "\000122"; /* 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%A2
MD5:
45dfc98b7230811df782144a740fbb22
SHA1:
3d07be4f26c7c316ebffabfa1c24dd26ba2f0ad6
Base64:
xKI=