Unicode Finder

"紙" U+7D19(CJK UNIFIED IDEOGRAPH-7D19)

U+7D19
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-7D19

Programming

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

Web

CSS
\007D19
HtmlDecimal
紙
HtmlHexadecimal
紙
Url
%E7%B4%99

Code

MD5
b9ebead76005411544b4d7c80e4e09b2
Sha1
c899fb51e3562d7804466355d240d9311a3f046d
Base64
57SZ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7D19';
console.log(char);  // Output: 紙

Java:

char c = '\u7D19';
System.out.println(c);  // Output: 紙

JSON:

{"text": "\u7D19"}  // Value: 紙

Python:

char = '\u7D19'
print(char)  # Output: 紙

Perl:

my $char = "\x{7D19}";
print $char;  # Output: 紙

PHP:

$char = "\x{7D19}";
echo $char;  // Output: 紙

Ruby:

char = "\u{7D19}"
puts char  # Output: 紙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32025;</p>  <!-- Display: 紙 -->

HTML Hexadecimal:

<p>HTML hex: &#x7D19;</p>  <!-- Display: 紙 -->

URL Encoding:

// 紙 URL encoding
https://unicodefinder.com/search.php?query=%E7%B4%99

Encodings

MD5:

b9ebead76005411544b4d7c80e4e09b2

SHA1:

c899fb51e3562d7804466355d240d9311a3f046d

Base64:

57SZ