Unicode Finder

"ġ" U+0121(LATIN SMALL LETTER G WITH DOT ABOVE)

ġ
U+0121
Block Name
Latin Extended-A
Name
LATIN SMALL LETTER G WITH DOT ABOVE

Programming

C
\u0121
JavaScript
\u0121
Java
\u0121
Json
\u0121
Python
\u0121
Perl
\x{0121}
PHP
\x{0121}
Ruby
\u{0121}
Rust
\u{121}
Go
\u0121

Web

CSS
\000121
HtmlDecimal
ġ
HtmlHexadecimal
ġ
Url
%C4%A1

Code

MD5
05414f059aac0ade1f49521ba4878e5c
Sha1
f80355338d4a4cbd4d9397941a8dbb7e1cc7f486
Base64
xKE=

Usage Examples

Programming Languages

C:

char c = '\u0121';
printf("%c\n", c);  // Output: ġ

JavaScript:

const char = '\u0121';
console.log(char);  // Output: ġ

Java:

char c = '\u0121';
System.out.println(c);  // Output: ġ

JSON:

{"text": "\u0121"}  // Value: ġ

Python:

char = '\u0121'
print(char)  # Output: ġ

Perl:

my $char = "\x{0121}";
print $char;  # Output: ġ

PHP:

$char = "\x{0121}";
echo $char;  // Output: ġ

Ruby:

char = "\u{0121}"
puts char  # Output: ġ

Rust:

let c = '\u{121}';
println!("{}", c);  // Output: ġ

Go:

char := '\u0121'
fmt.Printf("%c\n", char)  // Output: ġ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000121";  /* Display: ġ */
}

HTML Decimal:

<p>HTML decimal: &#289;</p>  <!-- Display: ġ -->

HTML Hexadecimal:

<p>HTML hex: &#x0121;</p>  <!-- Display: ġ -->

URL Encoding:

// ġ URL encoding
https://unicodefinder.com/search.php?query=%C4%A1

Encodings

MD5:

05414f059aac0ade1f49521ba4878e5c

SHA1:

f80355338d4a4cbd4d9397941a8dbb7e1cc7f486

Base64:

xKE=