Unicode Finder

"綡" U+7DA1(CJK UNIFIED IDEOGRAPH-7DA1)

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

Programming

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

Web

CSS
\007DA1
HtmlDecimal
綡
HtmlHexadecimal
綡
Url
%E7%B6%A1

Code

MD5
9e6f32db267333b7d2e14bf9eefbd762
Sha1
eae2e65d9827cf68bc68aac27c6246523fd1611c
Base64
57ah

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7DA1';
console.log(char);  // Output: 綡

Java:

char c = '\u7DA1';
System.out.println(c);  // Output: 綡

JSON:

{"text": "\u7DA1"}  // Value: 綡

Python:

char = '\u7DA1'
print(char)  # Output: 綡

Perl:

my $char = "\x{7DA1}";
print $char;  # Output: 綡

PHP:

$char = "\x{7DA1}";
echo $char;  // Output: 綡

Ruby:

char = "\u{7DA1}"
puts char  # Output: 綡

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32161;</p>  <!-- Display: 綡 -->

HTML Hexadecimal:

<p>HTML hex: &#x7DA1;</p>  <!-- Display: 綡 -->

URL Encoding:

// 綡 URL encoding
https://unicodefinder.com/search.php?query=%E7%B6%A1

Encodings

MD5:

9e6f32db267333b7d2e14bf9eefbd762

SHA1:

eae2e65d9827cf68bc68aac27c6246523fd1611c

Base64:

57ah