Unicode Finder

"紶" U+7D36(CJK UNIFIED IDEOGRAPH-7D36)

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

Programming

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

Web

CSS
\007D36
HtmlDecimal
紶
HtmlHexadecimal
紶
Url
%E7%B4%B6

Code

MD5
e2b1d8cc65c6dae3f4d0166e61f74bae
Sha1
687dcb59b4aa36c7a28bd914d75110f241667d0e
Base64
57S2

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7D36';
console.log(char);  // Output: 紶

Java:

char c = '\u7D36';
System.out.println(c);  // Output: 紶

JSON:

{"text": "\u7D36"}  // Value: 紶

Python:

char = '\u7D36'
print(char)  # Output: 紶

Perl:

my $char = "\x{7D36}";
print $char;  # Output: 紶

PHP:

$char = "\x{7D36}";
echo $char;  // Output: 紶

Ruby:

char = "\u{7D36}"
puts char  # Output: 紶

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32054;</p>  <!-- Display: 紶 -->

HTML Hexadecimal:

<p>HTML hex: &#x7D36;</p>  <!-- Display: 紶 -->

URL Encoding:

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

Encodings

MD5:

e2b1d8cc65c6dae3f4d0166e61f74bae

SHA1:

687dcb59b4aa36c7a28bd914d75110f241667d0e

Base64:

57S2