Unicode Finder

"糣" U+7CE3(CJK UNIFIED IDEOGRAPH-7CE3)

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

Programming

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

Web

CSS
\007CE3
HtmlDecimal
糣
HtmlHexadecimal
糣
Url
%E7%B3%A3

Code

MD5
ba46eb82fa2ba1813537bc3985ed2b79
Sha1
376586a4313be3ebbc485960aa01131ce55c566c
Base64
57Oj

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7CE3';
console.log(char);  // Output: 糣

Java:

char c = '\u7CE3';
System.out.println(c);  // Output: 糣

JSON:

{"text": "\u7CE3"}  // Value: 糣

Python:

char = '\u7CE3'
print(char)  # Output: 糣

Perl:

my $char = "\x{7CE3}";
print $char;  # Output: 糣

PHP:

$char = "\x{7CE3}";
echo $char;  // Output: 糣

Ruby:

char = "\u{7CE3}"
puts char  # Output: 糣

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31971;</p>  <!-- Display: 糣 -->

HTML Hexadecimal:

<p>HTML hex: &#x7CE3;</p>  <!-- Display: 糣 -->

URL Encoding:

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

Encodings

MD5:

ba46eb82fa2ba1813537bc3985ed2b79

SHA1:

376586a4313be3ebbc485960aa01131ce55c566c

Base64:

57Oj