C:
char c = '\u0047';
printf("%c\n", c); // Output: G
JavaScript:
const char = '\u0047';
console.log(char); // Output: G
Java:
char c = '\u0047';
System.out.println(c); // Output: G
JSON:
{"text": "\u0047"} // Value: G
Python:
char = '\u0047'
print(char) # Output: G
Perl:
my $char = "\x{0047}";
print $char; # Output: G
PHP:
$char = "\x{0047}";
echo $char; // Output: G
Ruby:
char = "\u{0047}"
puts char # Output: G
Rust:
let c = '\u{47}';
println!("{}", c); // Output: G
Go:
char := '\u0047'
fmt.Printf("%c\n", char) // Output: G
CSS:
/* CSS content property */
.element::before {
content: "\000047"; /* Display: G */
}
HTML Decimal:
<p>HTML decimal: G</p> <!-- Display: G -->
HTML Hexadecimal:
<p>HTML hex: G</p> <!-- Display: G -->
URL Encoding:
// G URL encoding
https://unicodefinder.com/search.php?query=G
MD5:
dfcf28d0734569a6a693bc8194de62bf
SHA1:
a36a6718f54524d846894fb04b5b885b4e43e63b
Base64:
Rw==