Unicode Finder

"ᷞ" U+1DDE(COMBINING LATIN LETTER SMALL CAPITAL L)

U+1DDE
Blokk Neve
Combining Diacritical Marks Supplement
Név
COMBINING LATIN LETTER SMALL CAPITAL L

Programming

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

Web

CSS
\001DDE
HtmlDecimal
ᷞ
HtmlHexadecimal
ᷞ
Url
%E1%B7%9E

Code

MD5
2649a359f46b656a200f7843294c7cdf
Sha1
7f65f3d2e605af4d114a4403c8e3862ede7177c5
Base64
4bee

Használati Példák

Programming Languages

C:

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

JavaScript:

const char = '\u1DDE';
console.log(char);  // Output: ᷞ

Java:

char c = '\u1DDE';
System.out.println(c);  // Output: ᷞ

JSON:

{"text": "\u1DDE"}  // Value: ᷞ

Python:

char = '\u1DDE'
print(char)  # Output: ᷞ

Perl:

my $char = "\x{1DDE}";
print $char;  # Output: ᷞ

PHP:

$char = "\x{1DDE}";
echo $char;  // Output: ᷞ

Ruby:

char = "\u{1DDE}"
puts char  # Output: ᷞ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7646;</p>  <!-- Display: ᷞ -->

HTML Hexadecimal:

<p>HTML hex: &#x1DDE;</p>  <!-- Display: ᷞ -->

URL Encoding:

// ᷞ URL encoding
https://unicodefinder.com/search.php?query=%E1%B7%9E

Encodings

MD5:

2649a359f46b656a200f7843294c7cdf

SHA1:

7f65f3d2e605af4d114a4403c8e3862ede7177c5

Base64:

4bee