Unicode Finder

"殌" U+6B8C(CJK UNIFIED IDEOGRAPH-6B8C)

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

Programming

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

Web

CSS
\006B8C
HtmlDecimal
殌
HtmlHexadecimal
殌
Url
%E6%AE%8C

Code

MD5
901e372b61ade5bc757e72cedfc3b570
Sha1
aa9ca3dd9e006d75b88881d8b2cad2ff2b29e61f
Base64
5q6M

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6B8C';
console.log(char);  // Output: 殌

Java:

char c = '\u6B8C';
System.out.println(c);  // Output: 殌

JSON:

{"text": "\u6B8C"}  // Value: 殌

Python:

char = '\u6B8C'
print(char)  # Output: 殌

Perl:

my $char = "\x{6B8C}";
print $char;  # Output: 殌

PHP:

$char = "\x{6B8C}";
echo $char;  // Output: 殌

Ruby:

char = "\u{6B8C}"
puts char  # Output: 殌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27532;</p>  <!-- Display: 殌 -->

HTML Hexadecimal:

<p>HTML hex: &#x6B8C;</p>  <!-- Display: 殌 -->

URL Encoding:

// 殌 URL encoding
https://unicodefinder.com/search.php?query=%E6%AE%8C

Encodings

MD5:

901e372b61ade5bc757e72cedfc3b570

SHA1:

aa9ca3dd9e006d75b88881d8b2cad2ff2b29e61f

Base64:

5q6M