Unicode Finder

"码" U+7801(CJK UNIFIED IDEOGRAPH-7801)

U+7801
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-7801

Programming

C
\u7801
JavaScript
\u7801
Java
\u7801
Json
\u7801
Python
\u7801
Perl
\x{7801}
PHP
\x{7801}
Ruby
\u{7801}
Rust
\u{7801}
Go
\u7801

Web

CSS
\007801
HtmlDecimal
码
HtmlHexadecimal
码
Url
%E7%A0%81

Code

MD5
2fbf8ccf779bfeb8f6469442f927ad17
Sha1
a6dfd7d7a7c48d0b8fe86ba6ad4ffb157083f802
Base64
56CB

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7801';
console.log(char);  // Output: 码

Java:

char c = '\u7801';
System.out.println(c);  // Output: 码

JSON:

{"text": "\u7801"}  // Value: 码

Python:

char = '\u7801'
print(char)  # Output: 码

Perl:

my $char = "\x{7801}";
print $char;  # Output: 码

PHP:

$char = "\x{7801}";
echo $char;  // Output: 码

Ruby:

char = "\u{7801}"
puts char  # Output: 码

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007801";  /* Display: 码 */
}

HTML Decimal:

<p>HTML decimal: &#30721;</p>  <!-- Display: 码 -->

HTML Hexadecimal:

<p>HTML hex: &#x7801;</p>  <!-- Display: 码 -->

URL Encoding:

// 码 URL encoding
https://unicodefinder.com/search.php?query=%E7%A0%81

Encodings

MD5:

2fbf8ccf779bfeb8f6469442f927ad17

SHA1:

a6dfd7d7a7c48d0b8fe86ba6ad4ffb157083f802

Base64:

56CB