Unicode Finder

"织" U+7EC7(CJK UNIFIED IDEOGRAPH-7EC7)

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

Programming

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

Web

CSS
\007EC7
HtmlDecimal
织
HtmlHexadecimal
织
Url
%E7%BB%87

Code

MD5
d252056bf86940b87e50eb44f0e4c480
Sha1
9707b53503df3154980042e0d3d60ea43a2b1eb5
Base64
57uH

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7EC7';
console.log(char);  // Output: 织

Java:

char c = '\u7EC7';
System.out.println(c);  // Output: 织

JSON:

{"text": "\u7EC7"}  // Value: 织

Python:

char = '\u7EC7'
print(char)  # Output: 织

Perl:

my $char = "\x{7EC7}";
print $char;  # Output: 织

PHP:

$char = "\x{7EC7}";
echo $char;  // Output: 织

Ruby:

char = "\u{7EC7}"
puts char  # Output: 织

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32455;</p>  <!-- Display: 织 -->

HTML Hexadecimal:

<p>HTML hex: &#x7EC7;</p>  <!-- Display: 织 -->

URL Encoding:

// 织 URL encoding
https://unicodefinder.com/search.php?query=%E7%BB%87

Encodings

MD5:

d252056bf86940b87e50eb44f0e4c480

SHA1:

9707b53503df3154980042e0d3d60ea43a2b1eb5

Base64:

57uH