Unicode Finder

"紒" U+7D12(CJK UNIFIED IDEOGRAPH-7D12)

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

Programming

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

Web

CSS
\007D12
HtmlDecimal
紒
HtmlHexadecimal
紒
Url
%E7%B4%92

Code

MD5
f1569ce29f69bf3c68f2e7c49ff3ce33
Sha1
845fd76cec2743b56b304c087747321d0a226036
Base64
57SS

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7D12';
console.log(char);  // Output: 紒

Java:

char c = '\u7D12';
System.out.println(c);  // Output: 紒

JSON:

{"text": "\u7D12"}  // Value: 紒

Python:

char = '\u7D12'
print(char)  # Output: 紒

Perl:

my $char = "\x{7D12}";
print $char;  # Output: 紒

PHP:

$char = "\x{7D12}";
echo $char;  // Output: 紒

Ruby:

char = "\u{7D12}"
puts char  # Output: 紒

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32018;</p>  <!-- Display: 紒 -->

HTML Hexadecimal:

<p>HTML hex: &#x7D12;</p>  <!-- Display: 紒 -->

URL Encoding:

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

Encodings

MD5:

f1569ce29f69bf3c68f2e7c49ff3ce33

SHA1:

845fd76cec2743b56b304c087747321d0a226036

Base64:

57SS