Unicode Finder

"衧" U+8867(CJK UNIFIED IDEOGRAPH-8867)

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

Programming

C
\u8867
JavaScript
\u8867
Java
\u8867
Json
\u8867
Python
\u8867
Perl
\x{8867}
PHP
\x{8867}
Ruby
\u{8867}
Rust
\u{8867}
Go
\u8867

Web

CSS
\008867
HtmlDecimal
衧
HtmlHexadecimal
衧
Url
%E8%A1%A7

Code

MD5
bbd7171fbd37719034e6bdab58bd7081
Sha1
2a6af04c255a6a76601ba3bb25f85f9c36fc175c
Base64
6KGn

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8867';
console.log(char);  // Output: 衧

Java:

char c = '\u8867';
System.out.println(c);  // Output: 衧

JSON:

{"text": "\u8867"}  // Value: 衧

Python:

char = '\u8867'
print(char)  # Output: 衧

Perl:

my $char = "\x{8867}";
print $char;  # Output: 衧

PHP:

$char = "\x{8867}";
echo $char;  // Output: 衧

Ruby:

char = "\u{8867}"
puts char  # Output: 衧

Rust:

let c = '\u{8867}';
println!("{}", c);  // Output: 衧

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008867";  /* Display: 衧 */
}

HTML Decimal:

<p>HTML decimal: &#34919;</p>  <!-- Display: 衧 -->

HTML Hexadecimal:

<p>HTML hex: &#x8867;</p>  <!-- Display: 衧 -->

URL Encoding:

// 衧 URL encoding
https://unicodefinder.com/search.php?query=%E8%A1%A7

Encodings

MD5:

bbd7171fbd37719034e6bdab58bd7081

SHA1:

2a6af04c255a6a76601ba3bb25f85f9c36fc175c

Base64:

6KGn