Unicode Finder

"逜" U+901C(CJK UNIFIED IDEOGRAPH-901C)

U+901C
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-901C

Programming

C
\u901C
JavaScript
\u901C
Java
\u901C
Json
\u901C
Python
\u901C
Perl
\x{901C}
PHP
\x{901C}
Ruby
\u{901C}
Rust
\u{901C}
Go
\u901C

Web

CSS
\00901C
HtmlDecimal
逜
HtmlHexadecimal
逜
Url
%E9%80%9C

Code

MD5
db8fedd2987ec90d94191a34506d68f3
Sha1
5f2724d6c27dacdd0c52c841afeb818e0228e253
Base64
6YCc

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u901C';
console.log(char);  // Output: 逜

Java:

char c = '\u901C';
System.out.println(c);  // Output: 逜

JSON:

{"text": "\u901C"}  // Value: 逜

Python:

char = '\u901C'
print(char)  # Output: 逜

Perl:

my $char = "\x{901C}";
print $char;  # Output: 逜

PHP:

$char = "\x{901C}";
echo $char;  // Output: 逜

Ruby:

char = "\u{901C}"
puts char  # Output: 逜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36892;</p>  <!-- Display: 逜 -->

HTML Hexadecimal:

<p>HTML hex: &#x901C;</p>  <!-- Display: 逜 -->

URL Encoding:

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

Encodings

MD5:

db8fedd2987ec90d94191a34506d68f3

SHA1:

5f2724d6c27dacdd0c52c841afeb818e0228e253

Base64:

6YCc