Unicode Finder

"ƪ" U+01AA(LATIN LETTER REVERSED ESH LOOP)

ƪ
U+01AA
Nazwa Bloku
Latin Extended-B
Nazwa
LATIN LETTER REVERSED ESH LOOP

Programming

C
\u01AA
JavaScript
\u01AA
Java
\u01AA
Json
\u01AA
Python
\u01AA
Perl
\x{01AA}
PHP
\x{01AA}
Ruby
\u{01AA}
Rust
\u{1AA}
Go
\u01AA

Web

CSS
\0001AA
HtmlDecimal
ƪ
HtmlHexadecimal
ƪ
Url
%C6%AA

Code

MD5
89dfb1d9f720a4ea76074255b5586fce
Sha1
fa9f01b93cff337584ee00e3bc715fa9cc99c513
Base64
xqo=

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u01AA';
console.log(char);  // Output: ƪ

Java:

char c = '\u01AA';
System.out.println(c);  // Output: ƪ

JSON:

{"text": "\u01AA"}  // Value: ƪ

Python:

char = '\u01AA'
print(char)  # Output: ƪ

Perl:

my $char = "\x{01AA}";
print $char;  # Output: ƪ

PHP:

$char = "\x{01AA}";
echo $char;  // Output: ƪ

Ruby:

char = "\u{01AA}"
puts char  # Output: ƪ

Rust:

let c = '\u{1AA}';
println!("{}", c);  // Output: ƪ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0001AA";  /* Display: ƪ */
}

HTML Decimal:

<p>HTML decimal: &#426;</p>  <!-- Display: ƪ -->

HTML Hexadecimal:

<p>HTML hex: &#x01AA;</p>  <!-- Display: ƪ -->

URL Encoding:

// ƪ URL encoding
https://unicodefinder.com/search.php?query=%C6%AA

Encodings

MD5:

89dfb1d9f720a4ea76074255b5586fce

SHA1:

fa9f01b93cff337584ee00e3bc715fa9cc99c513

Base64:

xqo=