Unicode Finder

"裁" U+88C1(CJK UNIFIED IDEOGRAPH-88C1)

U+88C1
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-88C1

Programming

C
\u88C1
JavaScript
\u88C1
Java
\u88C1
Json
\u88C1
Python
\u88C1
Perl
\x{88C1}
PHP
\x{88C1}
Ruby
\u{88C1}
Rust
\u{88C1}
Go
\u88C1

Web

CSS
\0088C1
HtmlDecimal
裁
HtmlHexadecimal
裁
Url
%E8%A3%81

Code

MD5
879a0f8a86b53d00dbae9cc814058ccb
Sha1
f755980905297e3ef68d01d06e0518d5debf2357
Base64
6KOB

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u88C1';
console.log(char);  // Output: 裁

Java:

char c = '\u88C1';
System.out.println(c);  // Output: 裁

JSON:

{"text": "\u88C1"}  // Value: 裁

Python:

char = '\u88C1'
print(char)  # Output: 裁

Perl:

my $char = "\x{88C1}";
print $char;  # Output: 裁

PHP:

$char = "\x{88C1}";
echo $char;  // Output: 裁

Ruby:

char = "\u{88C1}"
puts char  # Output: 裁

Rust:

let c = '\u{88C1}';
println!("{}", c);  // Output: 裁

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0088C1";  /* Display: 裁 */
}

HTML Decimal:

<p>HTML decimal: &#35009;</p>  <!-- Display: 裁 -->

HTML Hexadecimal:

<p>HTML hex: &#x88C1;</p>  <!-- Display: 裁 -->

URL Encoding:

// 裁 URL encoding
https://unicodefinder.com/search.php?query=%E8%A3%81

Encodings

MD5:

879a0f8a86b53d00dbae9cc814058ccb

SHA1:

f755980905297e3ef68d01d06e0518d5debf2357

Base64:

6KOB