Unicode Finder

"ᷬ" U+1DEC(COMBINING LATIN SMALL LETTER L WITH DOUBLE MIDDLE TILDE)

U+1DEC
Název Bloku
Combining Diacritical Marks Supplement
Název
COMBINING LATIN SMALL LETTER L WITH DOUBLE MIDDLE TILDE

Programming

C
\u1DEC
JavaScript
\u1DEC
Java
\u1DEC
Json
\u1DEC
Python
\u1DEC
Perl
\x{1DEC}
PHP
\x{1DEC}
Ruby
\u{1DEC}
Rust
\u{1DEC}
Go
\u1DEC

Web

CSS
\001DEC
HtmlDecimal
ᷬ
HtmlHexadecimal
ᷬ
Url
%E1%B7%AC

Code

MD5
5901c5cc9bfea7af930c6785aca26412
Sha1
0be3651a39ed8d996b8c45ff4fe6c3cc0db31652
Base64
4bes

Příklady Použití

Programming Languages

C:

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

JavaScript:

const char = '\u1DEC';
console.log(char);  // Output: ᷬ

Java:

char c = '\u1DEC';
System.out.println(c);  // Output: ᷬ

JSON:

{"text": "\u1DEC"}  // Value: ᷬ

Python:

char = '\u1DEC'
print(char)  # Output: ᷬ

Perl:

my $char = "\x{1DEC}";
print $char;  # Output: ᷬ

PHP:

$char = "\x{1DEC}";
echo $char;  // Output: ᷬ

Ruby:

char = "\u{1DEC}"
puts char  # Output: ᷬ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001DEC";  /* Display: ᷬ */
}

HTML Decimal:

<p>HTML decimal: &#7660;</p>  <!-- Display: ᷬ -->

HTML Hexadecimal:

<p>HTML hex: &#x1DEC;</p>  <!-- Display: ᷬ -->

URL Encoding:

// ᷬ URL encoding
https://unicodefinder.com/search.php?query=%E1%B7%AC

Encodings

MD5:

5901c5cc9bfea7af930c6785aca26412

SHA1:

0be3651a39ed8d996b8c45ff4fe6c3cc0db31652

Base64:

4bes