Unicode Finder

"祖" U+7956(CJK UNIFIED IDEOGRAPH-7956)

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

Programming

C
\u7956
JavaScript
\u7956
Java
\u7956
Json
\u7956
Python
\u7956
Perl
\x{7956}
PHP
\x{7956}
Ruby
\u{7956}
Rust
\u{7956}
Go
\u7956

Web

CSS
\007956
HtmlDecimal
祖
HtmlHexadecimal
祖
Url
%E7%A5%96

Code

MD5
7757611d16508c35d3e32f14433f882e
Sha1
b0b243542b6b6724c4b9fad49e45eb8faf3db92a
Base64
56WW

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7956';
console.log(char);  // Output: 祖

Java:

char c = '\u7956';
System.out.println(c);  // Output: 祖

JSON:

{"text": "\u7956"}  // Value: 祖

Python:

char = '\u7956'
print(char)  # Output: 祖

Perl:

my $char = "\x{7956}";
print $char;  # Output: 祖

PHP:

$char = "\x{7956}";
echo $char;  // Output: 祖

Ruby:

char = "\u{7956}"
puts char  # Output: 祖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007956";  /* Display: 祖 */
}

HTML Decimal:

<p>HTML decimal: &#31062;</p>  <!-- Display: 祖 -->

HTML Hexadecimal:

<p>HTML hex: &#x7956;</p>  <!-- Display: 祖 -->

URL Encoding:

// 祖 URL encoding
https://unicodefinder.com/search.php?query=%E7%A5%96

Encodings

MD5:

7757611d16508c35d3e32f14433f882e

SHA1:

b0b243542b6b6724c4b9fad49e45eb8faf3db92a

Base64:

56WW