Unicode Finder

"Ģ" U+0122(LATIN CAPITAL LETTER G WITH CEDILLA)

Ģ
U+0122
Block Name
Latin Extended-A
Name
LATIN CAPITAL LETTER G WITH CEDILLA

Programming

C
\u0122
JavaScript
\u0122
Java
\u0122
Json
\u0122
Python
\u0122
Perl
\x{0122}
PHP
\x{0122}
Ruby
\u{0122}
Rust
\u{122}
Go
\u0122

Web

CSS
\000122
HtmlDecimal
Ģ
HtmlHexadecimal
Ģ
Url
%C4%A2

Code

MD5
45dfc98b7230811df782144a740fbb22
Sha1
3d07be4f26c7c316ebffabfa1c24dd26ba2f0ad6
Base64
xKI=

Usage Examples

Programming Languages

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: Ģ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000122";  /* Display: Ģ */
}

HTML Decimal:

<p>HTML decimal: &#290;</p>  <!-- Display: Ģ -->

HTML Hexadecimal:

<p>HTML hex: &#x0122;</p>  <!-- Display: Ģ -->

URL Encoding:

// Ģ URL encoding
https://unicodefinder.com/search.php?query=%C4%A2

Encodings

MD5:

45dfc98b7230811df782144a740fbb22

SHA1:

3d07be4f26c7c316ebffabfa1c24dd26ba2f0ad6

Base64:

xKI=