Unicode Finder

"殼" U+6BBC(CJK UNIFIED IDEOGRAPH-6BBC)

U+6BBC
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-6BBC

Programming

C
\u6BBC
JavaScript
\u6BBC
Java
\u6BBC
Json
\u6BBC
Python
\u6BBC
Perl
\x{6BBC}
PHP
\x{6BBC}
Ruby
\u{6BBC}
Rust
\u{6BBC}
Go
\u6BBC

Web

CSS
\006BBC
HtmlDecimal
殼
HtmlHexadecimal
殼
Url
%E6%AE%BC

Code

MD5
63bf1c77dfa9fe817cf31e26b693996d
Sha1
558d0513ec573c21ebcf87c5903d4508505adcf6
Base64
5q68

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6BBC';
console.log(char);  // Output: 殼

Java:

char c = '\u6BBC';
System.out.println(c);  // Output: 殼

JSON:

{"text": "\u6BBC"}  // Value: 殼

Python:

char = '\u6BBC'
print(char)  # Output: 殼

Perl:

my $char = "\x{6BBC}";
print $char;  # Output: 殼

PHP:

$char = "\x{6BBC}";
echo $char;  // Output: 殼

Ruby:

char = "\u{6BBC}"
puts char  # Output: 殼

Rust:

let c = '\u{6BBC}';
println!("{}", c);  // Output: 殼

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006BBC";  /* Display: 殼 */
}

HTML Decimal:

<p>HTML decimal: &#27580;</p>  <!-- Display: 殼 -->

HTML Hexadecimal:

<p>HTML hex: &#x6BBC;</p>  <!-- Display: 殼 -->

URL Encoding:

// 殼 URL encoding
https://unicodefinder.com/search.php?query=%E6%AE%BC

Encodings

MD5:

63bf1c77dfa9fe817cf31e26b693996d

SHA1:

558d0513ec573c21ebcf87c5903d4508505adcf6

Base64:

5q68