Unicode Finder

"毨" U+6BE8(CJK UNIFIED IDEOGRAPH-6BE8)

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

Programming

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

Web

CSS
\006BE8
HtmlDecimal
毨
HtmlHexadecimal
毨
Url
%E6%AF%A8

Code

MD5
a5087b283e3a8a2ab06ba8cc8d02587a
Sha1
2bad58c10af081dc67a85782815b62329f0f3296
Base64
5q+o

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6BE8';
console.log(char);  // Output: 毨

Java:

char c = '\u6BE8';
System.out.println(c);  // Output: 毨

JSON:

{"text": "\u6BE8"}  // Value: 毨

Python:

char = '\u6BE8'
print(char)  # Output: 毨

Perl:

my $char = "\x{6BE8}";
print $char;  # Output: 毨

PHP:

$char = "\x{6BE8}";
echo $char;  // Output: 毨

Ruby:

char = "\u{6BE8}"
puts char  # Output: 毨

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27624;</p>  <!-- Display: 毨 -->

HTML Hexadecimal:

<p>HTML hex: &#x6BE8;</p>  <!-- Display: 毨 -->

URL Encoding:

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

Encodings

MD5:

a5087b283e3a8a2ab06ba8cc8d02587a

SHA1:

2bad58c10af081dc67a85782815b62329f0f3296

Base64:

5q+o