Unicode Finder

"ᰁ" U+1C01(LEPCHA LETTER KLA)

U+1C01
Nazwa Bloku
Lepcha
Nazwa
LEPCHA LETTER KLA

Programming

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

Web

CSS
\001C01
HtmlDecimal
ᰁ
HtmlHexadecimal
ᰁ
Url
%E1%B0%81

Code

MD5
45e3a4b9a3df2ebdece101e5fd50f2d5
Sha1
357f794ebe26ab563d8e8320f64182316518c8c3
Base64
4bCB

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1C01';
console.log(char);  // Output: ᰁ

Java:

char c = '\u1C01';
System.out.println(c);  // Output: ᰁ

JSON:

{"text": "\u1C01"}  // Value: ᰁ

Python:

char = '\u1C01'
print(char)  # Output: ᰁ

Perl:

my $char = "\x{1C01}";
print $char;  # Output: ᰁ

PHP:

$char = "\x{1C01}";
echo $char;  // Output: ᰁ

Ruby:

char = "\u{1C01}"
puts char  # Output: ᰁ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7169;</p>  <!-- Display: ᰁ -->

HTML Hexadecimal:

<p>HTML hex: &#x1C01;</p>  <!-- Display: ᰁ -->

URL Encoding:

// ᰁ URL encoding
https://unicodefinder.com/search.php?query=%E1%B0%81

Encodings

MD5:

45e3a4b9a3df2ebdece101e5fd50f2d5

SHA1:

357f794ebe26ab563d8e8320f64182316518c8c3

Base64:

4bCB