Unicode Finder

"帬" U+5E2C(CJK UNIFIED IDEOGRAPH-5E2C)

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

Programming

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

Web

CSS
\005E2C
HtmlDecimal
帬
HtmlHexadecimal
帬
Url
%E5%B8%AC

Code

MD5
034d7ea23568045c4a0c9bd5db0f26b9
Sha1
27a365e134cc5aa3c6f281b3bfe8e731552f8f07
Base64
5bis

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5E2C';
console.log(char);  // Output: 帬

Java:

char c = '\u5E2C';
System.out.println(c);  // Output: 帬

JSON:

{"text": "\u5E2C"}  // Value: 帬

Python:

char = '\u5E2C'
print(char)  # Output: 帬

Perl:

my $char = "\x{5E2C}";
print $char;  # Output: 帬

PHP:

$char = "\x{5E2C}";
echo $char;  // Output: 帬

Ruby:

char = "\u{5E2C}"
puts char  # Output: 帬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24108;</p>  <!-- Display: 帬 -->

HTML Hexadecimal:

<p>HTML hex: &#x5E2C;</p>  <!-- Display: 帬 -->

URL Encoding:

// 帬 URL encoding
https://unicodefinder.com/search.php?query=%E5%B8%AC

Encodings

MD5:

034d7ea23568045c4a0c9bd5db0f26b9

SHA1:

27a365e134cc5aa3c6f281b3bfe8e731552f8f07

Base64:

5bis