Unicode Finder

"毧" U+6BE7(CJK UNIFIED IDEOGRAPH-6BE7)

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

Programming

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

Web

CSS
\006BE7
HtmlDecimal
毧
HtmlHexadecimal
毧
Url
%E6%AF%A7

Code

MD5
e86311f8dd11e671e5ff206001c25b79
Sha1
1ebe29f1ae9be4390633d4eae1751b24db6b2219
Base64
5q+n

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6BE7';
console.log(char);  // Output: 毧

Java:

char c = '\u6BE7';
System.out.println(c);  // Output: 毧

JSON:

{"text": "\u6BE7"}  // Value: 毧

Python:

char = '\u6BE7'
print(char)  # Output: 毧

Perl:

my $char = "\x{6BE7}";
print $char;  # Output: 毧

PHP:

$char = "\x{6BE7}";
echo $char;  // Output: 毧

Ruby:

char = "\u{6BE7}"
puts char  # Output: 毧

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27623;</p>  <!-- Display: 毧 -->

HTML Hexadecimal:

<p>HTML hex: &#x6BE7;</p>  <!-- Display: 毧 -->

URL Encoding:

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

Encodings

MD5:

e86311f8dd11e671e5ff206001c25b79

SHA1:

1ebe29f1ae9be4390633d4eae1751b24db6b2219

Base64:

5q+n