Unicode Finder

"Ꮬ" U+13DC(CHEROKEE LETTER DLA)

U+13DC
Bloknaam
Cherokee
Naam
CHEROKEE LETTER DLA

Programming

C
\u13DC
JavaScript
\u13DC
Java
\u13DC
Json
\u13DC
Python
\u13DC
Perl
\x{13DC}
PHP
\x{13DC}
Ruby
\u{13DC}
Rust
\u{13DC}
Go
\u13DC

Web

CSS
\0013DC
HtmlDecimal
Ꮬ
HtmlHexadecimal
Ꮬ
Url
%E1%8F%9C

Code

MD5
9f9deaa8c6a3254005946d2dfea6633f
Sha1
12a3580e9ab231e0175099c0c99eb4b3564d10a6
Base64
4Y+c

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u13DC';
console.log(char);  // Output: Ꮬ

Java:

char c = '\u13DC';
System.out.println(c);  // Output: Ꮬ

JSON:

{"text": "\u13DC"}  // Value: Ꮬ

Python:

char = '\u13DC'
print(char)  # Output: Ꮬ

Perl:

my $char = "\x{13DC}";
print $char;  # Output: Ꮬ

PHP:

$char = "\x{13DC}";
echo $char;  // Output: Ꮬ

Ruby:

char = "\u{13DC}"
puts char  # Output: Ꮬ

Rust:

let c = '\u{13DC}';
println!("{}", c);  // Output: Ꮬ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0013DC";  /* Display: Ꮬ */
}

HTML Decimal:

<p>HTML decimal: &#5084;</p>  <!-- Display: Ꮬ -->

HTML Hexadecimal:

<p>HTML hex: &#x13DC;</p>  <!-- Display: Ꮬ -->

URL Encoding:

// Ꮬ URL encoding
https://unicodefinder.com/search.php?query=%E1%8F%9C

Encodings

MD5:

9f9deaa8c6a3254005946d2dfea6633f

SHA1:

12a3580e9ab231e0175099c0c99eb4b3564d10a6

Base64:

4Y+c