Unicode Finder

"ɣ" U+0263(LATIN SMALL LETTER GAMMA)

ɣ
U+0263
Block Name
IPA Extensions
Name
LATIN SMALL LETTER GAMMA

Programming

C
\u0263
JavaScript
\u0263
Java
\u0263
Json
\u0263
Python
\u0263
Perl
\x{0263}
PHP
\x{0263}
Ruby
\u{0263}
Rust
\u{263}
Go
\u0263

Web

CSS
\000263
HtmlDecimal
ɣ
HtmlHexadecimal
ɣ
Url
%C9%A3

Code

MD5
822f969da273b75be1fa15b5c7e470fa
Sha1
2f2572674fc9146bfbba98c802b12dc033a8e4a3
Base64
yaM=

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u0263';
console.log(char);  // Output: ɣ

Java:

char c = '\u0263';
System.out.println(c);  // Output: ɣ

JSON:

{"text": "\u0263"}  // Value: ɣ

Python:

char = '\u0263'
print(char)  # Output: ɣ

Perl:

my $char = "\x{0263}";
print $char;  # Output: ɣ

PHP:

$char = "\x{0263}";
echo $char;  // Output: ɣ

Ruby:

char = "\u{0263}"
puts char  # Output: ɣ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000263";  /* Display: ɣ */
}

HTML Decimal:

<p>HTML decimal: &#611;</p>  <!-- Display: ɣ -->

HTML Hexadecimal:

<p>HTML hex: &#x0263;</p>  <!-- Display: ɣ -->

URL Encoding:

// ɣ URL encoding
https://unicodefinder.com/search.php?query=%C9%A3

Encodings

MD5:

822f969da273b75be1fa15b5c7e470fa

SHA1:

2f2572674fc9146bfbba98c802b12dc033a8e4a3

Base64:

yaM=