Unicode Finder

"ɭ" U+026D(LATIN SMALL LETTER L WITH RETROFLEX HOOK)

ɭ
U+026D
Nume Bloc
IPA Extensions
Nume
LATIN SMALL LETTER L WITH RETROFLEX HOOK

Programming

C
\u026D
JavaScript
\u026D
Java
\u026D
Json
\u026D
Python
\u026D
Perl
\x{026D}
PHP
\x{026D}
Ruby
\u{026D}
Rust
\u{26D}
Go
\u026D

Web

CSS
\00026D
HtmlDecimal
ɭ
HtmlHexadecimal
ɭ
Url
%C9%AD

Code

MD5
1eb8802a203eca7892c6287fc3df583b
Sha1
d843f1f7f36d79df57e10d3752a7ba847da4efc1
Base64
ya0=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u026D';
console.log(char);  // Output: ɭ

Java:

char c = '\u026D';
System.out.println(c);  // Output: ɭ

JSON:

{"text": "\u026D"}  // Value: ɭ

Python:

char = '\u026D'
print(char)  # Output: ɭ

Perl:

my $char = "\x{026D}";
print $char;  # Output: ɭ

PHP:

$char = "\x{026D}";
echo $char;  // Output: ɭ

Ruby:

char = "\u{026D}"
puts char  # Output: ɭ

Rust:

let c = '\u{26D}';
println!("{}", c);  // Output: ɭ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00026D";  /* Display: ɭ */
}

HTML Decimal:

<p>HTML decimal: &#621;</p>  <!-- Display: ɭ -->

HTML Hexadecimal:

<p>HTML hex: &#x026D;</p>  <!-- Display: ɭ -->

URL Encoding:

// ɭ URL encoding
https://unicodefinder.com/search.php?query=%C9%AD

Encodings

MD5:

1eb8802a203eca7892c6287fc3df583b

SHA1:

d843f1f7f36d79df57e10d3752a7ba847da4efc1

Base64:

ya0=