Unicode Finder

"糰" U+7CF0(CJK UNIFIED IDEOGRAPH-7CF0)

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

Programming

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

Web

CSS
\007CF0
HtmlDecimal
糰
HtmlHexadecimal
糰
Url
%E7%B3%B0

Code

MD5
e151e8672bd821fe6a1d9f1838757b0c
Sha1
13f2fd76e4b754eb77bcf7ece97583f98f02f512
Base64
57Ow

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7CF0';
console.log(char);  // Output: 糰

Java:

char c = '\u7CF0';
System.out.println(c);  // Output: 糰

JSON:

{"text": "\u7CF0"}  // Value: 糰

Python:

char = '\u7CF0'
print(char)  # Output: 糰

Perl:

my $char = "\x{7CF0}";
print $char;  # Output: 糰

PHP:

$char = "\x{7CF0}";
echo $char;  // Output: 糰

Ruby:

char = "\u{7CF0}"
puts char  # Output: 糰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31984;</p>  <!-- Display: 糰 -->

HTML Hexadecimal:

<p>HTML hex: &#x7CF0;</p>  <!-- Display: 糰 -->

URL Encoding:

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

Encodings

MD5:

e151e8672bd821fe6a1d9f1838757b0c

SHA1:

13f2fd76e4b754eb77bcf7ece97583f98f02f512

Base64:

57Ow