C:
char c = '\u0123';
printf("%c\n", c); // Output: ģ
JavaScript:
const char = '\u0123';
console.log(char); // Output: ģ
Java:
char c = '\u0123';
System.out.println(c); // Output: ģ
JSON:
{"text": "\u0123"} // Value: ģ
Python:
char = '\u0123'
print(char) # Output: ģ
Perl:
my $char = "\x{0123}";
print $char; # Output: ģ
PHP:
$char = "\x{0123}";
echo $char; // Output: ģ
Ruby:
char = "\u{0123}"
puts char # Output: ģ
Rust:
let c = '\u{123}';
println!("{}", c); // Output: ģ
Go:
char := '\u0123'
fmt.Printf("%c\n", char) // Output: ģ
CSS:
/* CSS content property */
.element::before {
content: "\000123"; /* 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%A3
MD5:
24844e1d8cbeff29f59d395edf548f4f
SHA1:
0db75f84c1154fab51fc1ea4066851095227c2e9
Base64:
xKM=