Unicode Finder

"绑" U+7ED1(CJK UNIFIED IDEOGRAPH-7ED1)

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

Programming

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

Web

CSS
\007ED1
HtmlDecimal
绑
HtmlHexadecimal
绑
Url
%E7%BB%91

Code

MD5
d473a7b0b011771a783f5cfc4377f46b
Sha1
8c3c1bef0a25c4b53b1c1dab1db777002c08647a
Base64
57uR

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7ED1';
console.log(char);  // Output: 绑

Java:

char c = '\u7ED1';
System.out.println(c);  // Output: 绑

JSON:

{"text": "\u7ED1"}  // Value: 绑

Python:

char = '\u7ED1'
print(char)  # Output: 绑

Perl:

my $char = "\x{7ED1}";
print $char;  # Output: 绑

PHP:

$char = "\x{7ED1}";
echo $char;  // Output: 绑

Ruby:

char = "\u{7ED1}"
puts char  # Output: 绑

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32465;</p>  <!-- Display: 绑 -->

HTML Hexadecimal:

<p>HTML hex: &#x7ED1;</p>  <!-- Display: 绑 -->

URL Encoding:

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

Encodings

MD5:

d473a7b0b011771a783f5cfc4377f46b

SHA1:

8c3c1bef0a25c4b53b1c1dab1db777002c08647a

Base64:

57uR