Unicode Finder

"毈" U+6BC8(CJK UNIFIED IDEOGRAPH-6BC8)

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

Programming

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

Web

CSS
\006BC8
HtmlDecimal
毈
HtmlHexadecimal
毈
Url
%E6%AF%88

Code

MD5
925ca43833a0cf231e42a6361b55c1a5
Sha1
59fdf095fe308497f749979a78bb49a4b66105ed
Base64
5q+I

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6BC8';
console.log(char);  // Output: 毈

Java:

char c = '\u6BC8';
System.out.println(c);  // Output: 毈

JSON:

{"text": "\u6BC8"}  // Value: 毈

Python:

char = '\u6BC8'
print(char)  # Output: 毈

Perl:

my $char = "\x{6BC8}";
print $char;  # Output: 毈

PHP:

$char = "\x{6BC8}";
echo $char;  // Output: 毈

Ruby:

char = "\u{6BC8}"
puts char  # Output: 毈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27592;</p>  <!-- Display: 毈 -->

HTML Hexadecimal:

<p>HTML hex: &#x6BC8;</p>  <!-- Display: 毈 -->

URL Encoding:

// 毈 URL encoding
https://unicodefinder.com/search.php?query=%E6%AF%88

Encodings

MD5:

925ca43833a0cf231e42a6361b55c1a5

SHA1:

59fdf095fe308497f749979a78bb49a4b66105ed

Base64:

5q+I