Unicode Finder

"ᰂ" U+1C02(LEPCHA LETTER KHA)

U+1C02
Nazwa Bloku
Lepcha
Nazwa
LEPCHA LETTER KHA

Programming

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

Web

CSS
\001C02
HtmlDecimal
ᰂ
HtmlHexadecimal
ᰂ
Url
%E1%B0%82

Code

MD5
10de8f02dcc3cfe2829b55da7c6f24e2
Sha1
f6c6baedb7f9769b65e35d2fd5647618b9fc72d7
Base64
4bCC

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1C02';
console.log(char);  // Output: ᰂ

Java:

char c = '\u1C02';
System.out.println(c);  // Output: ᰂ

JSON:

{"text": "\u1C02"}  // Value: ᰂ

Python:

char = '\u1C02'
print(char)  # Output: ᰂ

Perl:

my $char = "\x{1C02}";
print $char;  # Output: ᰂ

PHP:

$char = "\x{1C02}";
echo $char;  // Output: ᰂ

Ruby:

char = "\u{1C02}"
puts char  # Output: ᰂ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7170;</p>  <!-- Display: ᰂ -->

HTML Hexadecimal:

<p>HTML hex: &#x1C02;</p>  <!-- Display: ᰂ -->

URL Encoding:

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

Encodings

MD5:

10de8f02dcc3cfe2829b55da7c6f24e2

SHA1:

f6c6baedb7f9769b65e35d2fd5647618b9fc72d7

Base64:

4bCC