Unicode Finder

"G" U+0047(LATIN CAPITAL LETTER G)

G
U+0047
Block Name
Basic Latin
Name
LATIN CAPITAL LETTER G

Programming

C
\u0047
JavaScript
\u0047
Java
\u0047
Json
\u0047
Python
\u0047
Perl
\x{0047}
PHP
\x{0047}
Ruby
\u{0047}
Rust
\u{47}
Go
\u0047

Web

CSS
\000047
HtmlDecimal
G
HtmlHexadecimal
G
Url
G

Code

MD5
dfcf28d0734569a6a693bc8194de62bf
Sha1
a36a6718f54524d846894fb04b5b885b4e43e63b
Base64
Rw==

Usage Examples

Programming Languages

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000047";  /* Display: G */
}

HTML Decimal:

<p>HTML decimal: &#71;</p>  <!-- Display: G -->

HTML Hexadecimal:

<p>HTML hex: &#x0047;</p>  <!-- Display: G -->

URL Encoding:

// G URL encoding
https://unicodefinder.com/search.php?query=G

Encodings

MD5:

dfcf28d0734569a6a693bc8194de62bf

SHA1:

a36a6718f54524d846894fb04b5b885b4e43e63b

Base64:

Rw==