Unicode Finder

"毇" U+6BC7(CJK UNIFIED IDEOGRAPH-6BC7)

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

Programming

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

Web

CSS
\006BC7
HtmlDecimal
毇
HtmlHexadecimal
毇
Url
%E6%AF%87

Code

MD5
1310c2a57f4ad95bf29fffc92e83a238
Sha1
7307aa547a114a4249e40977da4413a3acfed157
Base64
5q+H

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6BC7';
console.log(char);  // Output: 毇

Java:

char c = '\u6BC7';
System.out.println(c);  // Output: 毇

JSON:

{"text": "\u6BC7"}  // Value: 毇

Python:

char = '\u6BC7'
print(char)  # Output: 毇

Perl:

my $char = "\x{6BC7}";
print $char;  # Output: 毇

PHP:

$char = "\x{6BC7}";
echo $char;  // Output: 毇

Ruby:

char = "\u{6BC7}"
puts char  # Output: 毇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27591;</p>  <!-- Display: 毇 -->

HTML Hexadecimal:

<p>HTML hex: &#x6BC7;</p>  <!-- Display: 毇 -->

URL Encoding:

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

Encodings

MD5:

1310c2a57f4ad95bf29fffc92e83a238

SHA1:

7307aa547a114a4249e40977da4413a3acfed157

Base64:

5q+H