Unicode Finder

"毯" U+6BEF(CJK UNIFIED IDEOGRAPH-6BEF)

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

Programming

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

Web

CSS
\006BEF
HtmlDecimal
毯
HtmlHexadecimal
毯
Url
%E6%AF%AF

Code

MD5
bbd533dfd15ba518869f99937f06133f
Sha1
fa66b9ffa158514396fef4fe426d4aac741bfe88
Base64
5q+v

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6BEF';
console.log(char);  // Output: 毯

Java:

char c = '\u6BEF';
System.out.println(c);  // Output: 毯

JSON:

{"text": "\u6BEF"}  // Value: 毯

Python:

char = '\u6BEF'
print(char)  # Output: 毯

Perl:

my $char = "\x{6BEF}";
print $char;  # Output: 毯

PHP:

$char = "\x{6BEF}";
echo $char;  // Output: 毯

Ruby:

char = "\u{6BEF}"
puts char  # Output: 毯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27631;</p>  <!-- Display: 毯 -->

HTML Hexadecimal:

<p>HTML hex: &#x6BEF;</p>  <!-- Display: 毯 -->

URL Encoding:

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

Encodings

MD5:

bbd533dfd15ba518869f99937f06133f

SHA1:

fa66b9ffa158514396fef4fe426d4aac741bfe88

Base64:

5q+v