Unicode Finder

"幘" U+5E58(CJK UNIFIED IDEOGRAPH-5E58)

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

Programming

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

Web

CSS
\005E58
HtmlDecimal
幘
HtmlHexadecimal
幘
Url
%E5%B9%98

Code

MD5
f714fdb14f083a8bb573541856d56b8f
Sha1
f1c3a7e450cab23eeaca986ac544ced107c6bd24
Base64
5bmY

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5E58';
console.log(char);  // Output: 幘

Java:

char c = '\u5E58';
System.out.println(c);  // Output: 幘

JSON:

{"text": "\u5E58"}  // Value: 幘

Python:

char = '\u5E58'
print(char)  # Output: 幘

Perl:

my $char = "\x{5E58}";
print $char;  # Output: 幘

PHP:

$char = "\x{5E58}";
echo $char;  // Output: 幘

Ruby:

char = "\u{5E58}"
puts char  # Output: 幘

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24152;</p>  <!-- Display: 幘 -->

HTML Hexadecimal:

<p>HTML hex: &#x5E58;</p>  <!-- Display: 幘 -->

URL Encoding:

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

Encodings

MD5:

f714fdb14f083a8bb573541856d56b8f

SHA1:

f1c3a7e450cab23eeaca986ac544ced107c6bd24

Base64:

5bmY