Unicode Finder

"网" U+7F51(CJK UNIFIED IDEOGRAPH-7F51)

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

Programming

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

Web

CSS
\007F51
HtmlDecimal
网
HtmlHexadecimal
网
Url
%E7%BD%91

Code

MD5
6ebcee9721e9e2afc6c41b2d10941813
Sha1
4ad9435ac18bd5ec48b818390e16d8a089386fb8
Base64
572R

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7F51';
console.log(char);  // Output: 网

Java:

char c = '\u7F51';
System.out.println(c);  // Output: 网

JSON:

{"text": "\u7F51"}  // Value: 网

Python:

char = '\u7F51'
print(char)  # Output: 网

Perl:

my $char = "\x{7F51}";
print $char;  # Output: 网

PHP:

$char = "\x{7F51}";
echo $char;  // Output: 网

Ruby:

char = "\u{7F51}"
puts char  # Output: 网

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32593;</p>  <!-- Display: 网 -->

HTML Hexadecimal:

<p>HTML hex: &#x7F51;</p>  <!-- Display: 网 -->

URL Encoding:

// 网 URL encoding
https://unicodefinder.com/search.php?query=%E7%BD%91

Encodings

MD5:

6ebcee9721e9e2afc6c41b2d10941813

SHA1:

4ad9435ac18bd5ec48b818390e16d8a089386fb8

Base64:

572R