Unicode Finder

"幄" U+5E44(CJK UNIFIED IDEOGRAPH-5E44)

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

Programming

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

Web

CSS
\005E44
HtmlDecimal
幄
HtmlHexadecimal
幄
Url
%E5%B9%84

Code

MD5
739da3963363793fc78997f6ff753a7e
Sha1
bd27d55a450600c214114234d1993fa76711e934
Base64
5bmE

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5E44';
console.log(char);  // Output: 幄

Java:

char c = '\u5E44';
System.out.println(c);  // Output: 幄

JSON:

{"text": "\u5E44"}  // Value: 幄

Python:

char = '\u5E44'
print(char)  # Output: 幄

Perl:

my $char = "\x{5E44}";
print $char;  # Output: 幄

PHP:

$char = "\x{5E44}";
echo $char;  // Output: 幄

Ruby:

char = "\u{5E44}"
puts char  # Output: 幄

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24132;</p>  <!-- Display: 幄 -->

HTML Hexadecimal:

<p>HTML hex: &#x5E44;</p>  <!-- Display: 幄 -->

URL Encoding:

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

Encodings

MD5:

739da3963363793fc78997f6ff753a7e

SHA1:

bd27d55a450600c214114234d1993fa76711e934

Base64:

5bmE