Unicode Finder

"幟" U+5E5F(CJK UNIFIED IDEOGRAPH-5E5F)

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

Programming

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

Web

CSS
\005E5F
HtmlDecimal
幟
HtmlHexadecimal
幟
Url
%E5%B9%9F

Code

MD5
85ee735182e2b9422931dc8db06f4f5f
Sha1
e94fab453b6211b1681ede2bc380b1f29e4d978a
Base64
5bmf

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5E5F';
console.log(char);  // Output: 幟

Java:

char c = '\u5E5F';
System.out.println(c);  // Output: 幟

JSON:

{"text": "\u5E5F"}  // Value: 幟

Python:

char = '\u5E5F'
print(char)  # Output: 幟

Perl:

my $char = "\x{5E5F}";
print $char;  # Output: 幟

PHP:

$char = "\x{5E5F}";
echo $char;  // Output: 幟

Ruby:

char = "\u{5E5F}"
puts char  # Output: 幟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24159;</p>  <!-- Display: 幟 -->

HTML Hexadecimal:

<p>HTML hex: &#x5E5F;</p>  <!-- Display: 幟 -->

URL Encoding:

// 幟 URL encoding
https://unicodefinder.com/search.php?query=%E5%B9%9F

Encodings

MD5:

85ee735182e2b9422931dc8db06f4f5f

SHA1:

e94fab453b6211b1681ede2bc380b1f29e4d978a

Base64:

5bmf