Unicode Finder

"联" U+8054(CJK UNIFIED IDEOGRAPH-8054)

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

Programming

C
\u8054
JavaScript
\u8054
Java
\u8054
Json
\u8054
Python
\u8054
Perl
\x{8054}
PHP
\x{8054}
Ruby
\u{8054}
Rust
\u{8054}
Go
\u8054

Web

CSS
\008054
HtmlDecimal
联
HtmlHexadecimal
联
Url
%E8%81%94

Code

MD5
fe510ad36130852599720f72298cee0e
Sha1
9cd7392b4d811a725d2e83e6b873bece474fb24e
Base64
6IGU

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8054';
console.log(char);  // Output: 联

Java:

char c = '\u8054';
System.out.println(c);  // Output: 联

JSON:

{"text": "\u8054"}  // Value: 联

Python:

char = '\u8054'
print(char)  # Output: 联

Perl:

my $char = "\x{8054}";
print $char;  # Output: 联

PHP:

$char = "\x{8054}";
echo $char;  // Output: 联

Ruby:

char = "\u{8054}"
puts char  # Output: 联

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008054";  /* Display: 联 */
}

HTML Decimal:

<p>HTML decimal: &#32852;</p>  <!-- Display: 联 -->

HTML Hexadecimal:

<p>HTML hex: &#x8054;</p>  <!-- Display: 联 -->

URL Encoding:

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

Encodings

MD5:

fe510ad36130852599720f72298cee0e

SHA1:

9cd7392b4d811a725d2e83e6b873bece474fb24e

Base64:

6IGU