Unicode Finder

"ᰗ" U+1C17(LEPCHA LETTER TSA)

U+1C17
区块名称
Lepcha
名称
LEPCHA LETTER TSA

Programming

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

Web

CSS
\001C17
HtmlDecimal
ᰗ
HtmlHexadecimal
ᰗ
Url
%E1%B0%97

Code

MD5
765a99cffbb5abb379ae0454c02e0ef7
Sha1
8943c25d2eb05fecb2d69c0aa3123098791f3db9
Base64
4bCX

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u1C17';
console.log(char);  // Output: ᰗ

Java:

char c = '\u1C17';
System.out.println(c);  // Output: ᰗ

JSON:

{"text": "\u1C17"}  // Value: ᰗ

Python:

char = '\u1C17'
print(char)  # Output: ᰗ

Perl:

my $char = "\x{1C17}";
print $char;  # Output: ᰗ

PHP:

$char = "\x{1C17}";
echo $char;  // Output: ᰗ

Ruby:

char = "\u{1C17}"
puts char  # Output: ᰗ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7191;</p>  <!-- Display: ᰗ -->

HTML Hexadecimal:

<p>HTML hex: &#x1C17;</p>  <!-- Display: ᰗ -->

URL Encoding:

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

Encodings

MD5:

765a99cffbb5abb379ae0454c02e0ef7

SHA1:

8943c25d2eb05fecb2d69c0aa3123098791f3db9

Base64:

4bCX