Unicode Finder

"糚" U+7CDA(CJK UNIFIED IDEOGRAPH-7CDA)

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

Programming

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

Web

CSS
\007CDA
HtmlDecimal
糚
HtmlHexadecimal
糚
Url
%E7%B3%9A

Code

MD5
31a0d21f6148db91650366318ba51908
Sha1
1ba82aefd3f4f9df5ae35bf69305e1baaaa7fa56
Base64
57Oa

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7CDA';
console.log(char);  // Output: 糚

Java:

char c = '\u7CDA';
System.out.println(c);  // Output: 糚

JSON:

{"text": "\u7CDA"}  // Value: 糚

Python:

char = '\u7CDA'
print(char)  # Output: 糚

Perl:

my $char = "\x{7CDA}";
print $char;  # Output: 糚

PHP:

$char = "\x{7CDA}";
echo $char;  // Output: 糚

Ruby:

char = "\u{7CDA}"
puts char  # Output: 糚

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31962;</p>  <!-- Display: 糚 -->

HTML Hexadecimal:

<p>HTML hex: &#x7CDA;</p>  <!-- Display: 糚 -->

URL Encoding:

// 糚 URL encoding
https://unicodefinder.com/search.php?query=%E7%B3%9A

Encodings

MD5:

31a0d21f6148db91650366318ba51908

SHA1:

1ba82aefd3f4f9df5ae35bf69305e1baaaa7fa56

Base64:

57Oa