Unicode Finder

"糶" U+7CF6(CJK UNIFIED IDEOGRAPH-7CF6)

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

Programming

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

Web

CSS
\007CF6
HtmlDecimal
糶
HtmlHexadecimal
糶
Url
%E7%B3%B6

Code

MD5
4077f60f014c06988a6ded270c1484bb
Sha1
eb4b379f491da3e17bfff25562ee8ad6cd536fe2
Base64
57O2

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7CF6';
console.log(char);  // Output: 糶

Java:

char c = '\u7CF6';
System.out.println(c);  // Output: 糶

JSON:

{"text": "\u7CF6"}  // Value: 糶

Python:

char = '\u7CF6'
print(char)  # Output: 糶

Perl:

my $char = "\x{7CF6}";
print $char;  # Output: 糶

PHP:

$char = "\x{7CF6}";
echo $char;  // Output: 糶

Ruby:

char = "\u{7CF6}"
puts char  # Output: 糶

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31990;</p>  <!-- Display: 糶 -->

HTML Hexadecimal:

<p>HTML hex: &#x7CF6;</p>  <!-- Display: 糶 -->

URL Encoding:

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

Encodings

MD5:

4077f60f014c06988a6ded270c1484bb

SHA1:

eb4b379f491da3e17bfff25562ee8ad6cd536fe2

Base64:

57O2