Unicode Finder

"ģ" U+0123(LATIN SMALL LETTER G WITH CEDILLA)

ģ
U+0123
Block Name
Latin Extended-A
Name
LATIN SMALL LETTER G WITH CEDILLA

Programming

C
\u0123
JavaScript
\u0123
Java
\u0123
Json
\u0123
Python
\u0123
Perl
\x{0123}
PHP
\x{0123}
Ruby
\u{0123}
Rust
\u{123}
Go
\u0123

Web

CSS
\000123
HtmlDecimal
ģ
HtmlHexadecimal
ģ
Url
%C4%A3

Code

MD5
24844e1d8cbeff29f59d395edf548f4f
Sha1
0db75f84c1154fab51fc1ea4066851095227c2e9
Base64
xKM=

Usage Examples

Programming Languages

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000123";  /* Display: ģ */
}

HTML Decimal:

<p>HTML decimal: &#291;</p>  <!-- Display: ģ -->

HTML Hexadecimal:

<p>HTML hex: &#x0123;</p>  <!-- Display: ģ -->

URL Encoding:

// ģ URL encoding
https://unicodefinder.com/search.php?query=%C4%A3

Encodings

MD5:

24844e1d8cbeff29f59d395edf548f4f

SHA1:

0db75f84c1154fab51fc1ea4066851095227c2e9

Base64:

xKM=