Unicode Finder

"糤" U+7CE4(CJK UNIFIED IDEOGRAPH-7CE4)

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

Programming

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

Web

CSS
\007CE4
HtmlDecimal
糤
HtmlHexadecimal
糤
Url
%E7%B3%A4

Code

MD5
40022f79c6d12cbc53e67946c7ee6093
Sha1
5b445bed8afc7d14c2bc6357c88c56f06123c07a
Base64
57Ok

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7CE4';
console.log(char);  // Output: 糤

Java:

char c = '\u7CE4';
System.out.println(c);  // Output: 糤

JSON:

{"text": "\u7CE4"}  // Value: 糤

Python:

char = '\u7CE4'
print(char)  # Output: 糤

Perl:

my $char = "\x{7CE4}";
print $char;  # Output: 糤

PHP:

$char = "\x{7CE4}";
echo $char;  // Output: 糤

Ruby:

char = "\u{7CE4}"
puts char  # Output: 糤

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31972;</p>  <!-- Display: 糤 -->

HTML Hexadecimal:

<p>HTML hex: &#x7CE4;</p>  <!-- Display: 糤 -->

URL Encoding:

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

Encodings

MD5:

40022f79c6d12cbc53e67946c7ee6093

SHA1:

5b445bed8afc7d14c2bc6357c88c56f06123c07a

Base64:

57Ok