Unicode Finder

"Ɐ" U+2C6F(LATIN CAPITAL LETTER TURNED A)

U+2C6F
Block Name
Latin Extended-C
Name
LATIN CAPITAL LETTER TURNED A

Programming

C
\u2C6F
JavaScript
\u2C6F
Java
\u2C6F
Json
\u2C6F
Python
\u2C6F
Perl
\x{2C6F}
PHP
\x{2C6F}
Ruby
\u{2C6F}
Rust
\u{2C6F}
Go
\u2C6F

Web

CSS
\002C6F
HtmlDecimal
Ɐ
HtmlHexadecimal
Ɐ
Url
%E2%B1%AF

Code

MD5
a40d071ca9baf05e3fd160532ea23462
Sha1
3be6ac1e9edd255de3eea13842c44b600ab36804
Base64
4rGv

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2C6F';
console.log(char);  // Output: Ɐ

Java:

char c = '\u2C6F';
System.out.println(c);  // Output: Ɐ

JSON:

{"text": "\u2C6F"}  // Value: Ɐ

Python:

char = '\u2C6F'
print(char)  # Output: Ɐ

Perl:

my $char = "\x{2C6F}";
print $char;  # Output: Ɐ

PHP:

$char = "\x{2C6F}";
echo $char;  // Output: Ɐ

Ruby:

char = "\u{2C6F}"
puts char  # Output: Ɐ

Rust:

let c = '\u{2C6F}';
println!("{}", c);  // Output: Ɐ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002C6F";  /* Display: Ɐ */
}

HTML Decimal:

<p>HTML decimal: &#11375;</p>  <!-- Display: Ɐ -->

HTML Hexadecimal:

<p>HTML hex: &#x2C6F;</p>  <!-- Display: Ɐ -->

URL Encoding:

// Ɐ URL encoding
https://unicodefinder.com/search.php?query=%E2%B1%AF

Encodings

MD5:

a40d071ca9baf05e3fd160532ea23462

SHA1:

3be6ac1e9edd255de3eea13842c44b600ab36804

Base64:

4rGv