Unicode Finder

"ᰱ" U+1C31(LEPCHA CONSONANT SIGN P)

U+1C31
Название Блока
Lepcha
Название
LEPCHA CONSONANT SIGN P

Programming

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

Web

CSS
\001C31
HtmlDecimal
ᰱ
HtmlHexadecimal
ᰱ
Url
%E1%B0%B1

Code

MD5
d3e27de7d1152419e870ce564e50c609
Sha1
216804f97f9d76b2fb4216e01a307565b63cb1f3
Base64
4bCx

Примеры Использования

Programming Languages

C:

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

JavaScript:

const char = '\u1C31';
console.log(char);  // Output: ᰱ

Java:

char c = '\u1C31';
System.out.println(c);  // Output: ᰱ

JSON:

{"text": "\u1C31"}  // Value: ᰱ

Python:

char = '\u1C31'
print(char)  # Output: ᰱ

Perl:

my $char = "\x{1C31}";
print $char;  # Output: ᰱ

PHP:

$char = "\x{1C31}";
echo $char;  // Output: ᰱ

Ruby:

char = "\u{1C31}"
puts char  # Output: ᰱ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7217;</p>  <!-- Display: ᰱ -->

HTML Hexadecimal:

<p>HTML hex: &#x1C31;</p>  <!-- Display: ᰱ -->

URL Encoding:

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

Encodings

MD5:

d3e27de7d1152419e870ce564e50c609

SHA1:

216804f97f9d76b2fb4216e01a307565b63cb1f3

Base64:

4bCx