Unicode Finder

"殸" U+6BB8(CJK UNIFIED IDEOGRAPH-6BB8)

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

Programming

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

Web

CSS
\006BB8
HtmlDecimal
殸
HtmlHexadecimal
殸
Url
%E6%AE%B8

Code

MD5
41be37effb7717fe3b16192fa92d8a70
Sha1
8c3bd2b6b88b0b0cc878ebb9514793d7b49b44ab
Base64
5q64

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6BB8';
console.log(char);  // Output: 殸

Java:

char c = '\u6BB8';
System.out.println(c);  // Output: 殸

JSON:

{"text": "\u6BB8"}  // Value: 殸

Python:

char = '\u6BB8'
print(char)  # Output: 殸

Perl:

my $char = "\x{6BB8}";
print $char;  # Output: 殸

PHP:

$char = "\x{6BB8}";
echo $char;  // Output: 殸

Ruby:

char = "\u{6BB8}"
puts char  # Output: 殸

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27576;</p>  <!-- Display: 殸 -->

HTML Hexadecimal:

<p>HTML hex: &#x6BB8;</p>  <!-- Display: 殸 -->

URL Encoding:

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

Encodings

MD5:

41be37effb7717fe3b16192fa92d8a70

SHA1:

8c3bd2b6b88b0b0cc878ebb9514793d7b49b44ab

Base64:

5q64