Unicode Finder

"旂" U+65C2(CJK UNIFIED IDEOGRAPH-65C2)

U+65C2
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-65C2

Programming

C
\u65C2
JavaScript
\u65C2
Java
\u65C2
Json
\u65C2
Python
\u65C2
Perl
\x{65C2}
PHP
\x{65C2}
Ruby
\u{65C2}
Rust
\u{65C2}
Go
\u65C2

Web

CSS
\0065C2
HtmlDecimal
旂
HtmlHexadecimal
旂
Url
%E6%97%82

Code

MD5
50d7fb38d62ac4dcd7d55ba76ab743f7
Sha1
412fc037a811bbb1aeeab60a2519fc1f8649efc8
Base64
5peC

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u65C2';
console.log(char);  // Output: 旂

Java:

char c = '\u65C2';
System.out.println(c);  // Output: 旂

JSON:

{"text": "\u65C2"}  // Value: 旂

Python:

char = '\u65C2'
print(char)  # Output: 旂

Perl:

my $char = "\x{65C2}";
print $char;  # Output: 旂

PHP:

$char = "\x{65C2}";
echo $char;  // Output: 旂

Ruby:

char = "\u{65C2}"
puts char  # Output: 旂

Rust:

let c = '\u{65C2}';
println!("{}", c);  // Output: 旂

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0065C2";  /* Display: 旂 */
}

HTML Decimal:

<p>HTML decimal: &#26050;</p>  <!-- Display: 旂 -->

HTML Hexadecimal:

<p>HTML hex: &#x65C2;</p>  <!-- Display: 旂 -->

URL Encoding:

// 旂 URL encoding
https://unicodefinder.com/search.php?query=%E6%97%82

Encodings

MD5:

50d7fb38d62ac4dcd7d55ba76ab743f7

SHA1:

412fc037a811bbb1aeeab60a2519fc1f8649efc8

Base64:

5peC