Unicode Finder

"畡" U+7561(CJK UNIFIED IDEOGRAPH-7561)

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

Programming

C
\u7561
JavaScript
\u7561
Java
\u7561
Json
\u7561
Python
\u7561
Perl
\x{7561}
PHP
\x{7561}
Ruby
\u{7561}
Rust
\u{7561}
Go
\u7561

Web

CSS
\007561
HtmlDecimal
畡
HtmlHexadecimal
畡
Url
%E7%95%A1

Code

MD5
0ca15a2b37ffabaa5ea8d18ee2b090e3
Sha1
b89c2445f78e736f193c4d8f777ae2e662f24e53
Base64
55Wh

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7561';
console.log(char);  // Output: 畡

Java:

char c = '\u7561';
System.out.println(c);  // Output: 畡

JSON:

{"text": "\u7561"}  // Value: 畡

Python:

char = '\u7561'
print(char)  # Output: 畡

Perl:

my $char = "\x{7561}";
print $char;  # Output: 畡

PHP:

$char = "\x{7561}";
echo $char;  // Output: 畡

Ruby:

char = "\u{7561}"
puts char  # Output: 畡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007561";  /* Display: 畡 */
}

HTML Decimal:

<p>HTML decimal: &#30049;</p>  <!-- Display: 畡 -->

HTML Hexadecimal:

<p>HTML hex: &#x7561;</p>  <!-- Display: 畡 -->

URL Encoding:

// 畡 URL encoding
https://unicodefinder.com/search.php?query=%E7%95%A1

Encodings

MD5:

0ca15a2b37ffabaa5ea8d18ee2b090e3

SHA1:

b89c2445f78e736f193c4d8f777ae2e662f24e53

Base64:

55Wh