Unicode Finder

"絝" U+7D5D(CJK UNIFIED IDEOGRAPH-7D5D)

U+7D5D
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-7D5D

Programming

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

Web

CSS
\007D5D
HtmlDecimal
絝
HtmlHexadecimal
絝
Url
%E7%B5%9D

Code

MD5
5852a83460b50aac7813a76e1ec5f1ea
Sha1
5bc35902479c9fd829c251d93c8500db946c3474
Base64
57Wd

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7D5D';
console.log(char);  // Output: 絝

Java:

char c = '\u7D5D';
System.out.println(c);  // Output: 絝

JSON:

{"text": "\u7D5D"}  // Value: 絝

Python:

char = '\u7D5D'
print(char)  # Output: 絝

Perl:

my $char = "\x{7D5D}";
print $char;  # Output: 絝

PHP:

$char = "\x{7D5D}";
echo $char;  // Output: 絝

Ruby:

char = "\u{7D5D}"
puts char  # Output: 絝

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32093;</p>  <!-- Display: 絝 -->

HTML Hexadecimal:

<p>HTML hex: &#x7D5D;</p>  <!-- Display: 絝 -->

URL Encoding:

// 絝 URL encoding
https://unicodefinder.com/search.php?query=%E7%B5%9D

Encodings

MD5:

5852a83460b50aac7813a76e1ec5f1ea

SHA1:

5bc35902479c9fd829c251d93c8500db946c3474

Base64:

57Wd