Unicode Finder

"毱" U+6BF1(CJK UNIFIED IDEOGRAPH-6BF1)

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

Programming

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

Web

CSS
\006BF1
HtmlDecimal
毱
HtmlHexadecimal
毱
Url
%E6%AF%B1

Code

MD5
888f79382fd315bebcbcf6cf8e675491
Sha1
0a8b689e9345fc6d5f325f64c01b676cd531321d
Base64
5q+x

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6BF1';
console.log(char);  // Output: 毱

Java:

char c = '\u6BF1';
System.out.println(c);  // Output: 毱

JSON:

{"text": "\u6BF1"}  // Value: 毱

Python:

char = '\u6BF1'
print(char)  # Output: 毱

Perl:

my $char = "\x{6BF1}";
print $char;  # Output: 毱

PHP:

$char = "\x{6BF1}";
echo $char;  // Output: 毱

Ruby:

char = "\u{6BF1}"
puts char  # Output: 毱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27633;</p>  <!-- Display: 毱 -->

HTML Hexadecimal:

<p>HTML hex: &#x6BF1;</p>  <!-- Display: 毱 -->

URL Encoding:

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

Encodings

MD5:

888f79382fd315bebcbcf6cf8e675491

SHA1:

0a8b689e9345fc6d5f325f64c01b676cd531321d

Base64:

5q+x