Unicode Finder

"ᰈ" U+1C08(LEPCHA LETTER JA)

U+1C08
Nazwa Bloku
Lepcha
Nazwa
LEPCHA LETTER JA

Programming

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

Web

CSS
\001C08
HtmlDecimal
ᰈ
HtmlHexadecimal
ᰈ
Url
%E1%B0%88

Code

MD5
3878f3bed763d8c69fca6c6d786274e2
Sha1
82bdb8ae9aece3e58ddcc4501d64bbf9fedc3688
Base64
4bCI

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1C08';
console.log(char);  // Output: ᰈ

Java:

char c = '\u1C08';
System.out.println(c);  // Output: ᰈ

JSON:

{"text": "\u1C08"}  // Value: ᰈ

Python:

char = '\u1C08'
print(char)  # Output: ᰈ

Perl:

my $char = "\x{1C08}";
print $char;  # Output: ᰈ

PHP:

$char = "\x{1C08}";
echo $char;  // Output: ᰈ

Ruby:

char = "\u{1C08}"
puts char  # Output: ᰈ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7176;</p>  <!-- Display: ᰈ -->

HTML Hexadecimal:

<p>HTML hex: &#x1C08;</p>  <!-- Display: ᰈ -->

URL Encoding:

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

Encodings

MD5:

3878f3bed763d8c69fca6c6d786274e2

SHA1:

82bdb8ae9aece3e58ddcc4501d64bbf9fedc3688

Base64:

4bCI