Unicode Finder

"祇" U+7947(CJK UNIFIED IDEOGRAPH-7947)

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

Programming

C
\u7947
JavaScript
\u7947
Java
\u7947
Json
\u7947
Python
\u7947
Perl
\x{7947}
PHP
\x{7947}
Ruby
\u{7947}
Rust
\u{7947}
Go
\u7947

Web

CSS
\007947
HtmlDecimal
祇
HtmlHexadecimal
祇
Url
%E7%A5%87

Code

MD5
6cecbc2b3c916978d8de7047ecbe3638
Sha1
04c023132c4680ab06e3fac68d24083d3c04529c
Base64
56WH

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7947';
console.log(char);  // Output: 祇

Java:

char c = '\u7947';
System.out.println(c);  // Output: 祇

JSON:

{"text": "\u7947"}  // Value: 祇

Python:

char = '\u7947'
print(char)  # Output: 祇

Perl:

my $char = "\x{7947}";
print $char;  # Output: 祇

PHP:

$char = "\x{7947}";
echo $char;  // Output: 祇

Ruby:

char = "\u{7947}"
puts char  # Output: 祇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007947";  /* Display: 祇 */
}

HTML Decimal:

<p>HTML decimal: &#31047;</p>  <!-- Display: 祇 -->

HTML Hexadecimal:

<p>HTML hex: &#x7947;</p>  <!-- Display: 祇 -->

URL Encoding:

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

Encodings

MD5:

6cecbc2b3c916978d8de7047ecbe3638

SHA1:

04c023132c4680ab06e3fac68d24083d3c04529c

Base64:

56WH