Unicode Finder

"倜" U+501C(CJK UNIFIED IDEOGRAPH-501C)

U+501C
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-501C

Programming

C
\u501C
JavaScript
\u501C
Java
\u501C
Json
\u501C
Python
\u501C
Perl
\x{501C}
PHP
\x{501C}
Ruby
\u{501C}
Rust
\u{501C}
Go
\u501C

Web

CSS
\00501C
HtmlDecimal
倜
HtmlHexadecimal
倜
Url
%E5%80%9C

Code

MD5
99a3fa8e3e2166b9d2c37c33ffd2d024
Sha1
9abce777ae4ec1fb1a064f83d1cd79a8d261c88f
Base64
5YCc

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u501C';
console.log(char);  // Output: 倜

Java:

char c = '\u501C';
System.out.println(c);  // Output: 倜

JSON:

{"text": "\u501C"}  // Value: 倜

Python:

char = '\u501C'
print(char)  # Output: 倜

Perl:

my $char = "\x{501C}";
print $char;  # Output: 倜

PHP:

$char = "\x{501C}";
echo $char;  // Output: 倜

Ruby:

char = "\u{501C}"
puts char  # Output: 倜

Rust:

let c = '\u{501C}';
println!("{}", c);  // Output: 倜

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00501C";  /* Display: 倜 */
}

HTML Decimal:

<p>HTML decimal: &#20508;</p>  <!-- Display: 倜 -->

HTML Hexadecimal:

<p>HTML hex: &#x501C;</p>  <!-- Display: 倜 -->

URL Encoding:

// 倜 URL encoding
https://unicodefinder.com/search.php?query=%E5%80%9C

Encodings

MD5:

99a3fa8e3e2166b9d2c37c33ffd2d024

SHA1:

9abce777ae4ec1fb1a064f83d1cd79a8d261c88f

Base64:

5YCc