Unicode Finder

"粶" U+7CB6(CJK UNIFIED IDEOGRAPH-7CB6)

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

Programming

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

Web

CSS
\007CB6
HtmlDecimal
粶
HtmlHexadecimal
粶
Url
%E7%B2%B6

Code

MD5
ccbec8e0ad248429a8f719da059a6472
Sha1
872959b12566368e95de9232e5ff4dea9f5830a9
Base64
57K2

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7CB6';
console.log(char);  // Output: 粶

Java:

char c = '\u7CB6';
System.out.println(c);  // Output: 粶

JSON:

{"text": "\u7CB6"}  // Value: 粶

Python:

char = '\u7CB6'
print(char)  # Output: 粶

Perl:

my $char = "\x{7CB6}";
print $char;  # Output: 粶

PHP:

$char = "\x{7CB6}";
echo $char;  // Output: 粶

Ruby:

char = "\u{7CB6}"
puts char  # Output: 粶

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31926;</p>  <!-- Display: 粶 -->

HTML Hexadecimal:

<p>HTML hex: &#x7CB6;</p>  <!-- Display: 粶 -->

URL Encoding:

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

Encodings

MD5:

ccbec8e0ad248429a8f719da059a6472

SHA1:

872959b12566368e95de9232e5ff4dea9f5830a9

Base64:

57K2