Unicode Finder

"糬" U+7CEC(CJK UNIFIED IDEOGRAPH-7CEC)

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

Programming

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

Web

CSS
\007CEC
HtmlDecimal
糬
HtmlHexadecimal
糬
Url
%E7%B3%AC

Code

MD5
a5970745bbe52ab397cd4b7a6a3a338a
Sha1
c443e759bbf7a37c5aed27b8b0921cf9390d1f5e
Base64
57Os

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7CEC';
console.log(char);  // Output: 糬

Java:

char c = '\u7CEC';
System.out.println(c);  // Output: 糬

JSON:

{"text": "\u7CEC"}  // Value: 糬

Python:

char = '\u7CEC'
print(char)  # Output: 糬

Perl:

my $char = "\x{7CEC}";
print $char;  # Output: 糬

PHP:

$char = "\x{7CEC}";
echo $char;  // Output: 糬

Ruby:

char = "\u{7CEC}"
puts char  # Output: 糬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31980;</p>  <!-- Display: 糬 -->

HTML Hexadecimal:

<p>HTML hex: &#x7CEC;</p>  <!-- Display: 糬 -->

URL Encoding:

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

Encodings

MD5:

a5970745bbe52ab397cd4b7a6a3a338a

SHA1:

c443e759bbf7a37c5aed27b8b0921cf9390d1f5e

Base64:

57Os