Unicode Finder

"窜" U+7A9C(CJK UNIFIED IDEOGRAPH-7A9C)

U+7A9C
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-7A9C

Programming

C
\u7A9C
JavaScript
\u7A9C
Java
\u7A9C
Json
\u7A9C
Python
\u7A9C
Perl
\x{7A9C}
PHP
\x{7A9C}
Ruby
\u{7A9C}
Rust
\u{7A9C}
Go
\u7A9C

Web

CSS
\007A9C
HtmlDecimal
窜
HtmlHexadecimal
窜
Url
%E7%AA%9C

Code

MD5
7ea11654f70f3436077e5acf7fd21f82
Sha1
dd24c8f3378c211cde63bfb012eb656a9b4f7e73
Base64
56qc

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7A9C';
console.log(char);  // Output: 窜

Java:

char c = '\u7A9C';
System.out.println(c);  // Output: 窜

JSON:

{"text": "\u7A9C"}  // Value: 窜

Python:

char = '\u7A9C'
print(char)  # Output: 窜

Perl:

my $char = "\x{7A9C}";
print $char;  # Output: 窜

PHP:

$char = "\x{7A9C}";
echo $char;  // Output: 窜

Ruby:

char = "\u{7A9C}"
puts char  # Output: 窜

Rust:

let c = '\u{7A9C}';
println!("{}", c);  // Output: 窜

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007A9C";  /* Display: 窜 */
}

HTML Decimal:

<p>HTML decimal: &#31388;</p>  <!-- Display: 窜 -->

HTML Hexadecimal:

<p>HTML hex: &#x7A9C;</p>  <!-- Display: 窜 -->

URL Encoding:

// 窜 URL encoding
https://unicodefinder.com/search.php?query=%E7%AA%9C

Encodings

MD5:

7ea11654f70f3436077e5acf7fd21f82

SHA1:

dd24c8f3378c211cde63bfb012eb656a9b4f7e73

Base64:

56qc