Unicode Finder

"毬" U+6BEC(CJK UNIFIED IDEOGRAPH-6BEC)

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

Programming

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

Web

CSS
\006BEC
HtmlDecimal
毬
HtmlHexadecimal
毬
Url
%E6%AF%AC

Code

MD5
d331293d9cb40b879a2073d2e92eec44
Sha1
e42e169283dc579b853066625cdb811412865b07
Base64
5q+s

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6BEC';
console.log(char);  // Output: 毬

Java:

char c = '\u6BEC';
System.out.println(c);  // Output: 毬

JSON:

{"text": "\u6BEC"}  // Value: 毬

Python:

char = '\u6BEC'
print(char)  # Output: 毬

Perl:

my $char = "\x{6BEC}";
print $char;  # Output: 毬

PHP:

$char = "\x{6BEC}";
echo $char;  // Output: 毬

Ruby:

char = "\u{6BEC}"
puts char  # Output: 毬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27628;</p>  <!-- Display: 毬 -->

HTML Hexadecimal:

<p>HTML hex: &#x6BEC;</p>  <!-- Display: 毬 -->

URL Encoding:

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

Encodings

MD5:

d331293d9cb40b879a2073d2e92eec44

SHA1:

e42e169283dc579b853066625cdb811412865b07

Base64:

5q+s