Unicode Finder

"衔" U+8854(CJK UNIFIED IDEOGRAPH-8854)

U+8854
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-8854

Programming

C
\u8854
JavaScript
\u8854
Java
\u8854
Json
\u8854
Python
\u8854
Perl
\x{8854}
PHP
\x{8854}
Ruby
\u{8854}
Rust
\u{8854}
Go
\u8854

Web

CSS
\008854
HtmlDecimal
衔
HtmlHexadecimal
衔
Url
%E8%A1%94

Code

MD5
09e7e22209a4a45c92738f5a7dc8b674
Sha1
64b4628b71d49e7edcc8a9bd4b3051f60e62e95d
Base64
6KGU

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8854';
console.log(char);  // Output: 衔

Java:

char c = '\u8854';
System.out.println(c);  // Output: 衔

JSON:

{"text": "\u8854"}  // Value: 衔

Python:

char = '\u8854'
print(char)  # Output: 衔

Perl:

my $char = "\x{8854}";
print $char;  # Output: 衔

PHP:

$char = "\x{8854}";
echo $char;  // Output: 衔

Ruby:

char = "\u{8854}"
puts char  # Output: 衔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008854";  /* Display: 衔 */
}

HTML Decimal:

<p>HTML decimal: &#34900;</p>  <!-- Display: 衔 -->

HTML Hexadecimal:

<p>HTML hex: &#x8854;</p>  <!-- Display: 衔 -->

URL Encoding:

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

Encodings

MD5:

09e7e22209a4a45c92738f5a7dc8b674

SHA1:

64b4628b71d49e7edcc8a9bd4b3051f60e62e95d

Base64:

6KGU