Unicode Finder

"络" U+7EDC(CJK UNIFIED IDEOGRAPH-7EDC)

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

Programming

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

Web

CSS
\007EDC
HtmlDecimal
络
HtmlHexadecimal
络
Url
%E7%BB%9C

Code

MD5
1983c84b53fc9577afe34766028909ef
Sha1
a81300b8def4d6e86de9f60df684dcb38d1fa0b2
Base64
57uc

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7EDC';
console.log(char);  // Output: 络

Java:

char c = '\u7EDC';
System.out.println(c);  // Output: 络

JSON:

{"text": "\u7EDC"}  // Value: 络

Python:

char = '\u7EDC'
print(char)  # Output: 络

Perl:

my $char = "\x{7EDC}";
print $char;  # Output: 络

PHP:

$char = "\x{7EDC}";
echo $char;  // Output: 络

Ruby:

char = "\u{7EDC}"
puts char  # Output: 络

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32476;</p>  <!-- Display: 络 -->

HTML Hexadecimal:

<p>HTML hex: &#x7EDC;</p>  <!-- Display: 络 -->

URL Encoding:

// 络 URL encoding
https://unicodefinder.com/search.php?query=%E7%BB%9C

Encodings

MD5:

1983c84b53fc9577afe34766028909ef

SHA1:

a81300b8def4d6e86de9f60df684dcb38d1fa0b2

Base64:

57uc