Unicode Finder

"旌" U+65CC(CJK UNIFIED IDEOGRAPH-65CC)

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

Programming

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

Web

CSS
\0065CC
HtmlDecimal
旌
HtmlHexadecimal
旌
Url
%E6%97%8C

Code

MD5
0f1b5caa7b25c39bbcb93facdb981a30
Sha1
9c9d2779624527fe1b16660dd9d32e14a403e0bb
Base64
5peM

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u65CC';
console.log(char);  // Output: 旌

Java:

char c = '\u65CC';
System.out.println(c);  // Output: 旌

JSON:

{"text": "\u65CC"}  // Value: 旌

Python:

char = '\u65CC'
print(char)  # Output: 旌

Perl:

my $char = "\x{65CC}";
print $char;  # Output: 旌

PHP:

$char = "\x{65CC}";
echo $char;  // Output: 旌

Ruby:

char = "\u{65CC}"
puts char  # Output: 旌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26060;</p>  <!-- Display: 旌 -->

HTML Hexadecimal:

<p>HTML hex: &#x65CC;</p>  <!-- Display: 旌 -->

URL Encoding:

// 旌 URL encoding
https://unicodefinder.com/search.php?query=%E6%97%8C

Encodings

MD5:

0f1b5caa7b25c39bbcb93facdb981a30

SHA1:

9c9d2779624527fe1b16660dd9d32e14a403e0bb

Base64:

5peM