Unicode Finder

"ʪ" U+02AA(LATIN SMALL LETTER LS DIGRAPH)

ʪ
U+02AA
Nombre del Bloque
IPA Extensions
Nombre
LATIN SMALL LETTER LS DIGRAPH

Programming

C
\u02AA
JavaScript
\u02AA
Java
\u02AA
Json
\u02AA
Python
\u02AA
Perl
\x{02AA}
PHP
\x{02AA}
Ruby
\u{02AA}
Rust
\u{2AA}
Go
\u02AA

Web

CSS
\0002AA
HtmlDecimal
ʪ
HtmlHexadecimal
ʪ
Url
%CA%AA

Code

MD5
52976deb1da12165572eadfc29cc79ca
Sha1
fdbed47f232ba50774bfc5ce0fac21c7348908d1
Base64
yqo=

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u02AA';
console.log(char);  // Output: ʪ

Java:

char c = '\u02AA';
System.out.println(c);  // Output: ʪ

JSON:

{"text": "\u02AA"}  // Value: ʪ

Python:

char = '\u02AA'
print(char)  # Output: ʪ

Perl:

my $char = "\x{02AA}";
print $char;  # Output: ʪ

PHP:

$char = "\x{02AA}";
echo $char;  // Output: ʪ

Ruby:

char = "\u{02AA}"
puts char  # Output: ʪ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#682;</p>  <!-- Display: ʪ -->

HTML Hexadecimal:

<p>HTML hex: &#x02AA;</p>  <!-- Display: ʪ -->

URL Encoding:

// ʪ URL encoding
https://unicodefinder.com/search.php?query=%CA%AA

Encodings

MD5:

52976deb1da12165572eadfc29cc79ca

SHA1:

fdbed47f232ba50774bfc5ce0fac21c7348908d1

Base64:

yqo=