Unicode Finder

"糆" U+7CC6(CJK UNIFIED IDEOGRAPH-7CC6)

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

Programming

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

Web

CSS
\007CC6
HtmlDecimal
糆
HtmlHexadecimal
糆
Url
%E7%B3%86

Code

MD5
4105410294ae998a8737c81fa5e6d538
Sha1
1f456f5b1d2ed98c77b3ef6b0810c6a8b1e3a62c
Base64
57OG

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7CC6';
console.log(char);  // Output: 糆

Java:

char c = '\u7CC6';
System.out.println(c);  // Output: 糆

JSON:

{"text": "\u7CC6"}  // Value: 糆

Python:

char = '\u7CC6'
print(char)  # Output: 糆

Perl:

my $char = "\x{7CC6}";
print $char;  # Output: 糆

PHP:

$char = "\x{7CC6}";
echo $char;  // Output: 糆

Ruby:

char = "\u{7CC6}"
puts char  # Output: 糆

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31942;</p>  <!-- Display: 糆 -->

HTML Hexadecimal:

<p>HTML hex: &#x7CC6;</p>  <!-- Display: 糆 -->

URL Encoding:

// 糆 URL encoding
https://unicodefinder.com/search.php?query=%E7%B3%86

Encodings

MD5:

4105410294ae998a8737c81fa5e6d538

SHA1:

1f456f5b1d2ed98c77b3ef6b0810c6a8b1e3a62c

Base64:

57OG