Unicode Finder

"绂" U+7EC2(CJK UNIFIED IDEOGRAPH-7EC2)

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

Programming

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

Web

CSS
\007EC2
HtmlDecimal
绂
HtmlHexadecimal
绂
Url
%E7%BB%82

Code

MD5
ecb024f88cac4e79efbcf203b37ea992
Sha1
5fab6cb3766b8fdca8e6037ffea2a6e2c1743f63
Base64
57uC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7EC2';
console.log(char);  // Output: 绂

Java:

char c = '\u7EC2';
System.out.println(c);  // Output: 绂

JSON:

{"text": "\u7EC2"}  // Value: 绂

Python:

char = '\u7EC2'
print(char)  # Output: 绂

Perl:

my $char = "\x{7EC2}";
print $char;  # Output: 绂

PHP:

$char = "\x{7EC2}";
echo $char;  // Output: 绂

Ruby:

char = "\u{7EC2}"
puts char  # Output: 绂

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32450;</p>  <!-- Display: 绂 -->

HTML Hexadecimal:

<p>HTML hex: &#x7EC2;</p>  <!-- Display: 绂 -->

URL Encoding:

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

Encodings

MD5:

ecb024f88cac4e79efbcf203b37ea992

SHA1:

5fab6cb3766b8fdca8e6037ffea2a6e2c1743f63

Base64:

57uC