Unicode Finder

"幝" U+5E5D(CJK UNIFIED IDEOGRAPH-5E5D)

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

Programming

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

Web

CSS
\005E5D
HtmlDecimal
幝
HtmlHexadecimal
幝
Url
%E5%B9%9D

Code

MD5
c943dc340d5d17323cc93275859bce9b
Sha1
873cd9bedfb263e6d97f1afcbda0aa4ccc600d1c
Base64
5bmd

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5E5D';
console.log(char);  // Output: 幝

Java:

char c = '\u5E5D';
System.out.println(c);  // Output: 幝

JSON:

{"text": "\u5E5D"}  // Value: 幝

Python:

char = '\u5E5D'
print(char)  # Output: 幝

Perl:

my $char = "\x{5E5D}";
print $char;  # Output: 幝

PHP:

$char = "\x{5E5D}";
echo $char;  // Output: 幝

Ruby:

char = "\u{5E5D}"
puts char  # Output: 幝

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24157;</p>  <!-- Display: 幝 -->

HTML Hexadecimal:

<p>HTML hex: &#x5E5D;</p>  <!-- Display: 幝 -->

URL Encoding:

// 幝 URL encoding
https://unicodefinder.com/search.php?query=%E5%B9%9D

Encodings

MD5:

c943dc340d5d17323cc93275859bce9b

SHA1:

873cd9bedfb263e6d97f1afcbda0aa4ccc600d1c

Base64:

5bmd