Unicode Finder

"完" U+5B8C(CJK UNIFIED IDEOGRAPH-5B8C)

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

Programming

C
\u5B8C
JavaScript
\u5B8C
Java
\u5B8C
Json
\u5B8C
Python
\u5B8C
Perl
\x{5B8C}
PHP
\x{5B8C}
Ruby
\u{5B8C}
Rust
\u{5B8C}
Go
\u5B8C

Web

CSS
\005B8C
HtmlDecimal
完
HtmlHexadecimal
完
Url
%E5%AE%8C

Code

MD5
68b6c8104e083796eab2b6e69c51ce15
Sha1
08300957760bf693052d622aa3a78d001dc6e2f7
Base64
5a6M

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5B8C';
console.log(char);  // Output: 完

Java:

char c = '\u5B8C';
System.out.println(c);  // Output: 完

JSON:

{"text": "\u5B8C"}  // Value: 完

Python:

char = '\u5B8C'
print(char)  # Output: 完

Perl:

my $char = "\x{5B8C}";
print $char;  # Output: 完

PHP:

$char = "\x{5B8C}";
echo $char;  // Output: 完

Ruby:

char = "\u{5B8C}"
puts char  # Output: 完

Rust:

let c = '\u{5B8C}';
println!("{}", c);  // Output: 完

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005B8C";  /* Display: 完 */
}

HTML Decimal:

<p>HTML decimal: &#23436;</p>  <!-- Display: 完 -->

HTML Hexadecimal:

<p>HTML hex: &#x5B8C;</p>  <!-- Display: 完 -->

URL Encoding:

// 完 URL encoding
https://unicodefinder.com/search.php?query=%E5%AE%8C

Encodings

MD5:

68b6c8104e083796eab2b6e69c51ce15

SHA1:

08300957760bf693052d622aa3a78d001dc6e2f7

Base64:

5a6M