Unicode Finder

"ᰫ" U+1C2B(LEPCHA VOWEL SIGN UU)

U+1C2B
Nome del Blocco
Lepcha
Nome
LEPCHA VOWEL SIGN UU

Programming

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

Web

CSS
\001C2B
HtmlDecimal
ᰫ
HtmlHexadecimal
ᰫ
Url
%E1%B0%AB

Code

MD5
0de1bda85279fdb2b21aa551f81cea6a
Sha1
27fc4f13780edbc900b10cac29450ded560e4e12
Base64
4bCr

Esempi di Utilizzo

Programming Languages

C:

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

JavaScript:

const char = '\u1C2B';
console.log(char);  // Output: ᰫ

Java:

char c = '\u1C2B';
System.out.println(c);  // Output: ᰫ

JSON:

{"text": "\u1C2B"}  // Value: ᰫ

Python:

char = '\u1C2B'
print(char)  # Output: ᰫ

Perl:

my $char = "\x{1C2B}";
print $char;  # Output: ᰫ

PHP:

$char = "\x{1C2B}";
echo $char;  // Output: ᰫ

Ruby:

char = "\u{1C2B}"
puts char  # Output: ᰫ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7211;</p>  <!-- Display: ᰫ -->

HTML Hexadecimal:

<p>HTML hex: &#x1C2B;</p>  <!-- Display: ᰫ -->

URL Encoding:

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

Encodings

MD5:

0de1bda85279fdb2b21aa551f81cea6a

SHA1:

27fc4f13780edbc900b10cac29450ded560e4e12

Base64:

4bCr