Unicode Finder

"殻" U+6BBB(CJK UNIFIED IDEOGRAPH-6BBB)

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

Programming

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

Web

CSS
\006BBB
HtmlDecimal
殻
HtmlHexadecimal
殻
Url
%E6%AE%BB

Code

MD5
b94b6b5c7b0c431bddbbd82c4c2b7b1a
Sha1
20673000d7092b9b624aa3c7687d8527f60fafbf
Base64
5q67

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6BBB';
console.log(char);  // Output: 殻

Java:

char c = '\u6BBB';
System.out.println(c);  // Output: 殻

JSON:

{"text": "\u6BBB"}  // Value: 殻

Python:

char = '\u6BBB'
print(char)  # Output: 殻

Perl:

my $char = "\x{6BBB}";
print $char;  # Output: 殻

PHP:

$char = "\x{6BBB}";
echo $char;  // Output: 殻

Ruby:

char = "\u{6BBB}"
puts char  # Output: 殻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27579;</p>  <!-- Display: 殻 -->

HTML Hexadecimal:

<p>HTML hex: &#x6BBB;</p>  <!-- Display: 殻 -->

URL Encoding:

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

Encodings

MD5:

b94b6b5c7b0c431bddbbd82c4c2b7b1a

SHA1:

20673000d7092b9b624aa3c7687d8527f60fafbf

Base64:

5q67