Unicode Finder

"片" U+7247(CJK UNIFIED IDEOGRAPH-7247)

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

Programming

C
\u7247
JavaScript
\u7247
Java
\u7247
Json
\u7247
Python
\u7247
Perl
\x{7247}
PHP
\x{7247}
Ruby
\u{7247}
Rust
\u{7247}
Go
\u7247

Web

CSS
\007247
HtmlDecimal
片
HtmlHexadecimal
片
Url
%E7%89%87

Code

MD5
b26fc74c5735d58c82ebc97ca1a40e63
Sha1
8f603fb51d3bac8c36f86c6b38ee0dc3fab6f97a
Base64
54mH

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7247';
console.log(char);  // Output: 片

Java:

char c = '\u7247';
System.out.println(c);  // Output: 片

JSON:

{"text": "\u7247"}  // Value: 片

Python:

char = '\u7247'
print(char)  # Output: 片

Perl:

my $char = "\x{7247}";
print $char;  # Output: 片

PHP:

$char = "\x{7247}";
echo $char;  // Output: 片

Ruby:

char = "\u{7247}"
puts char  # Output: 片

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007247";  /* Display: 片 */
}

HTML Decimal:

<p>HTML decimal: &#29255;</p>  <!-- Display: 片 -->

HTML Hexadecimal:

<p>HTML hex: &#x7247;</p>  <!-- Display: 片 -->

URL Encoding:

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

Encodings

MD5:

b26fc74c5735d58c82ebc97ca1a40e63

SHA1:

8f603fb51d3bac8c36f86c6b38ee0dc3fab6f97a

Base64:

54mH