Unicode Finder

"ɐ" U+0250(LATIN SMALL LETTER TURNED A)

ɐ
U+0250
Nume Bloc
IPA Extensions
Nume
LATIN SMALL LETTER TURNED A

Programming

C
\u0250
JavaScript
\u0250
Java
\u0250
Json
\u0250
Python
\u0250
Perl
\x{0250}
PHP
\x{0250}
Ruby
\u{0250}
Rust
\u{250}
Go
\u0250

Web

CSS
\000250
HtmlDecimal
ɐ
HtmlHexadecimal
ɐ
Url
%C9%90

Code

MD5
e40642c0f30455894f6b27f025caade6
Sha1
b95a6c6f39702608e3384661653a2a330406b667
Base64
yZA=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u0250';
console.log(char);  // Output: ɐ

Java:

char c = '\u0250';
System.out.println(c);  // Output: ɐ

JSON:

{"text": "\u0250"}  // Value: ɐ

Python:

char = '\u0250'
print(char)  # Output: ɐ

Perl:

my $char = "\x{0250}";
print $char;  # Output: ɐ

PHP:

$char = "\x{0250}";
echo $char;  // Output: ɐ

Ruby:

char = "\u{0250}"
puts char  # Output: ɐ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000250";  /* Display: ɐ */
}

HTML Decimal:

<p>HTML decimal: &#592;</p>  <!-- Display: ɐ -->

HTML Hexadecimal:

<p>HTML hex: &#x0250;</p>  <!-- Display: ɐ -->

URL Encoding:

// ɐ URL encoding
https://unicodefinder.com/search.php?query=%C9%90

Encodings

MD5:

e40642c0f30455894f6b27f025caade6

SHA1:

b95a6c6f39702608e3384661653a2a330406b667

Base64:

yZA=