Unicode Finder

"粻" U+7CBB(CJK UNIFIED IDEOGRAPH-7CBB)

U+7CBB
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-7CBB

Programming

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

Web

CSS
\007CBB
HtmlDecimal
粻
HtmlHexadecimal
粻
Url
%E7%B2%BB

Code

MD5
49a5b53d4d464eb84f17a8eded543cee
Sha1
8ad9001f39e0ff030046d3cae9ab3903b94d8286
Base64
57K7

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7CBB';
console.log(char);  // Output: 粻

Java:

char c = '\u7CBB';
System.out.println(c);  // Output: 粻

JSON:

{"text": "\u7CBB"}  // Value: 粻

Python:

char = '\u7CBB'
print(char)  # Output: 粻

Perl:

my $char = "\x{7CBB}";
print $char;  # Output: 粻

PHP:

$char = "\x{7CBB}";
echo $char;  // Output: 粻

Ruby:

char = "\u{7CBB}"
puts char  # Output: 粻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31931;</p>  <!-- Display: 粻 -->

HTML Hexadecimal:

<p>HTML hex: &#x7CBB;</p>  <!-- Display: 粻 -->

URL Encoding:

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

Encodings

MD5:

49a5b53d4d464eb84f17a8eded543cee

SHA1:

8ad9001f39e0ff030046d3cae9ab3903b94d8286

Base64:

57K7