Unicode Finder

"ᰞ" U+1C1E(LEPCHA LETTER HLA)

U+1C1E
Nazwa Bloku
Lepcha
Nazwa
LEPCHA LETTER HLA

Programming

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

Web

CSS
\001C1E
HtmlDecimal
ᰞ
HtmlHexadecimal
ᰞ
Url
%E1%B0%9E

Code

MD5
475add0b5c25ed37298f60897ad13804
Sha1
00dba07530c9c6c5cf16f5c1949613e2b4473e42
Base64
4bCe

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1C1E';
console.log(char);  // Output: ᰞ

Java:

char c = '\u1C1E';
System.out.println(c);  // Output: ᰞ

JSON:

{"text": "\u1C1E"}  // Value: ᰞ

Python:

char = '\u1C1E'
print(char)  # Output: ᰞ

Perl:

my $char = "\x{1C1E}";
print $char;  # Output: ᰞ

PHP:

$char = "\x{1C1E}";
echo $char;  // Output: ᰞ

Ruby:

char = "\u{1C1E}"
puts char  # Output: ᰞ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7198;</p>  <!-- Display: ᰞ -->

HTML Hexadecimal:

<p>HTML hex: &#x1C1E;</p>  <!-- Display: ᰞ -->

URL Encoding:

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

Encodings

MD5:

475add0b5c25ed37298f60897ad13804

SHA1:

00dba07530c9c6c5cf16f5c1949613e2b4473e42

Base64:

4bCe