Unicode Finder

"紑" U+7D11(CJK UNIFIED IDEOGRAPH-7D11)

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

Programming

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

Web

CSS
\007D11
HtmlDecimal
紑
HtmlHexadecimal
紑
Url
%E7%B4%91

Code

MD5
192db00d606ee960294b50bf03530622
Sha1
7c6adb3ac715e9aeff94f870854d6dc1d107a791
Base64
57SR

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7D11';
console.log(char);  // Output: 紑

Java:

char c = '\u7D11';
System.out.println(c);  // Output: 紑

JSON:

{"text": "\u7D11"}  // Value: 紑

Python:

char = '\u7D11'
print(char)  # Output: 紑

Perl:

my $char = "\x{7D11}";
print $char;  # Output: 紑

PHP:

$char = "\x{7D11}";
echo $char;  // Output: 紑

Ruby:

char = "\u{7D11}"
puts char  # Output: 紑

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32017;</p>  <!-- Display: 紑 -->

HTML Hexadecimal:

<p>HTML hex: &#x7D11;</p>  <!-- Display: 紑 -->

URL Encoding:

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

Encodings

MD5:

192db00d606ee960294b50bf03530622

SHA1:

7c6adb3ac715e9aeff94f870854d6dc1d107a791

Base64:

57SR