Unicode Finder

"糵" U+7CF5(CJK UNIFIED IDEOGRAPH-7CF5)

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

Programming

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

Web

CSS
\007CF5
HtmlDecimal
糵
HtmlHexadecimal
糵
Url
%E7%B3%B5

Code

MD5
d080ce3981d1d993b8065ff168662b60
Sha1
a013955edf6764776b8b4e696bd169eea95979be
Base64
57O1

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7CF5';
console.log(char);  // Output: 糵

Java:

char c = '\u7CF5';
System.out.println(c);  // Output: 糵

JSON:

{"text": "\u7CF5"}  // Value: 糵

Python:

char = '\u7CF5'
print(char)  # Output: 糵

Perl:

my $char = "\x{7CF5}";
print $char;  # Output: 糵

PHP:

$char = "\x{7CF5}";
echo $char;  // Output: 糵

Ruby:

char = "\u{7CF5}"
puts char  # Output: 糵

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31989;</p>  <!-- Display: 糵 -->

HTML Hexadecimal:

<p>HTML hex: &#x7CF5;</p>  <!-- Display: 糵 -->

URL Encoding:

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

Encodings

MD5:

d080ce3981d1d993b8065ff168662b60

SHA1:

a013955edf6764776b8b4e696bd169eea95979be

Base64:

57O1