Unicode Finder

"幌" U+5E4C(CJK UNIFIED IDEOGRAPH-5E4C)

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

Programming

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

Web

CSS
\005E4C
HtmlDecimal
幌
HtmlHexadecimal
幌
Url
%E5%B9%8C

Code

MD5
fa2295f8964ca694ee1cf19bee849544
Sha1
559ec9e76f64f3ea000b777b24ecdddd17071694
Base64
5bmM

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5E4C';
console.log(char);  // Output: 幌

Java:

char c = '\u5E4C';
System.out.println(c);  // Output: 幌

JSON:

{"text": "\u5E4C"}  // Value: 幌

Python:

char = '\u5E4C'
print(char)  # Output: 幌

Perl:

my $char = "\x{5E4C}";
print $char;  # Output: 幌

PHP:

$char = "\x{5E4C}";
echo $char;  // Output: 幌

Ruby:

char = "\u{5E4C}"
puts char  # Output: 幌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24140;</p>  <!-- Display: 幌 -->

HTML Hexadecimal:

<p>HTML hex: &#x5E4C;</p>  <!-- Display: 幌 -->

URL Encoding:

// 幌 URL encoding
https://unicodefinder.com/search.php?query=%E5%B9%8C

Encodings

MD5:

fa2295f8964ca694ee1cf19bee849544

SHA1:

559ec9e76f64f3ea000b777b24ecdddd17071694

Base64:

5bmM