Unicode Finder

"数" U+6570(CJK UNIFIED IDEOGRAPH-6570)

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

Programming

C
\u6570
JavaScript
\u6570
Java
\u6570
Json
\u6570
Python
\u6570
Perl
\x{6570}
PHP
\x{6570}
Ruby
\u{6570}
Rust
\u{6570}
Go
\u6570

Web

CSS
\006570
HtmlDecimal
数
HtmlHexadecimal
数
Url
%E6%95%B0

Code

MD5
54af0a5df5db6d604c86c7e16b3eb9bd
Sha1
da1f520c6f54007c10d167a9223e2686397d2d55
Base64
5pWw

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6570';
console.log(char);  // Output: 数

Java:

char c = '\u6570';
System.out.println(c);  // Output: 数

JSON:

{"text": "\u6570"}  // Value: 数

Python:

char = '\u6570'
print(char)  # Output: 数

Perl:

my $char = "\x{6570}";
print $char;  # Output: 数

PHP:

$char = "\x{6570}";
echo $char;  // Output: 数

Ruby:

char = "\u{6570}"
puts char  # Output: 数

Rust:

let c = '\u{6570}';
println!("{}", c);  // Output: 数

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006570";  /* Display: 数 */
}

HTML Decimal:

<p>HTML decimal: &#25968;</p>  <!-- Display: 数 -->

HTML Hexadecimal:

<p>HTML hex: &#x6570;</p>  <!-- Display: 数 -->

URL Encoding:

// 数 URL encoding
https://unicodefinder.com/search.php?query=%E6%95%B0

Encodings

MD5:

54af0a5df5db6d604c86c7e16b3eb9bd

SHA1:

da1f520c6f54007c10d167a9223e2686397d2d55

Base64:

5pWw