Unicode Finder

"幗" U+5E57(CJK UNIFIED IDEOGRAPH-5E57)

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

Programming

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

Web

CSS
\005E57
HtmlDecimal
幗
HtmlHexadecimal
幗
Url
%E5%B9%97

Code

MD5
ff21730e8d682996ec7b489eeb2ef217
Sha1
9f170156e49c3abccd29e9478e9e04919198ea03
Base64
5bmX

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5E57';
console.log(char);  // Output: 幗

Java:

char c = '\u5E57';
System.out.println(c);  // Output: 幗

JSON:

{"text": "\u5E57"}  // Value: 幗

Python:

char = '\u5E57'
print(char)  # Output: 幗

Perl:

my $char = "\x{5E57}";
print $char;  # Output: 幗

PHP:

$char = "\x{5E57}";
echo $char;  // Output: 幗

Ruby:

char = "\u{5E57}"
puts char  # Output: 幗

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24151;</p>  <!-- Display: 幗 -->

HTML Hexadecimal:

<p>HTML hex: &#x5E57;</p>  <!-- Display: 幗 -->

URL Encoding:

// 幗 URL encoding
https://unicodefinder.com/search.php?query=%E5%B9%97

Encodings

MD5:

ff21730e8d682996ec7b489eeb2ef217

SHA1:

9f170156e49c3abccd29e9478e9e04919198ea03

Base64:

5bmX