Unicode Finder

"ᰵ" U+1C35(LEPCHA CONSONANT SIGN KANG)

U+1C35
ブロック名
Lepcha
名前
LEPCHA CONSONANT SIGN KANG

Programming

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

Web

CSS
\001C35
HtmlDecimal
ᰵ
HtmlHexadecimal
ᰵ
Url
%E1%B0%B5

Code

MD5
c04e143fc3b008b36da733aae45315ef
Sha1
fc50b945e215570ce8e97d15b70f97a542e63d51
Base64
4bC1

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u1C35';
console.log(char);  // Output: ᰵ

Java:

char c = '\u1C35';
System.out.println(c);  // Output: ᰵ

JSON:

{"text": "\u1C35"}  // Value: ᰵ

Python:

char = '\u1C35'
print(char)  # Output: ᰵ

Perl:

my $char = "\x{1C35}";
print $char;  # Output: ᰵ

PHP:

$char = "\x{1C35}";
echo $char;  // Output: ᰵ

Ruby:

char = "\u{1C35}"
puts char  # Output: ᰵ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7221;</p>  <!-- Display: ᰵ -->

HTML Hexadecimal:

<p>HTML hex: &#x1C35;</p>  <!-- Display: ᰵ -->

URL Encoding:

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

Encodings

MD5:

c04e143fc3b008b36da733aae45315ef

SHA1:

fc50b945e215570ce8e97d15b70f97a542e63d51

Base64:

4bC1