Unicode Finder

"帼" U+5E3C(CJK UNIFIED IDEOGRAPH-5E3C)

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

Programming

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

Web

CSS
\005E3C
HtmlDecimal
帼
HtmlHexadecimal
帼
Url
%E5%B8%BC

Code

MD5
8bfcfc1f6b0af059eb226c5e178b3927
Sha1
1d8835381361f5653d6f49819c0cf40bd12e672b
Base64
5bi8

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5E3C';
console.log(char);  // Output: 帼

Java:

char c = '\u5E3C';
System.out.println(c);  // Output: 帼

JSON:

{"text": "\u5E3C"}  // Value: 帼

Python:

char = '\u5E3C'
print(char)  # Output: 帼

Perl:

my $char = "\x{5E3C}";
print $char;  # Output: 帼

PHP:

$char = "\x{5E3C}";
echo $char;  // Output: 帼

Ruby:

char = "\u{5E3C}"
puts char  # Output: 帼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24124;</p>  <!-- Display: 帼 -->

HTML Hexadecimal:

<p>HTML hex: &#x5E3C;</p>  <!-- Display: 帼 -->

URL Encoding:

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

Encodings

MD5:

8bfcfc1f6b0af059eb226c5e178b3927

SHA1:

1d8835381361f5653d6f49819c0cf40bd12e672b

Base64:

5bi8