Unicode Finder

"毫" U+6BEB(CJK UNIFIED IDEOGRAPH-6BEB)

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

Programming

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

Web

CSS
\006BEB
HtmlDecimal
毫
HtmlHexadecimal
毫
Url
%E6%AF%AB

Code

MD5
c5b0b9cd291c331c543b88a6e41a74d6
Sha1
7c812c255199541c3084d6e9effcd5bb129737e1
Base64
5q+r

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6BEB';
console.log(char);  // Output: 毫

Java:

char c = '\u6BEB';
System.out.println(c);  // Output: 毫

JSON:

{"text": "\u6BEB"}  // Value: 毫

Python:

char = '\u6BEB'
print(char)  # Output: 毫

Perl:

my $char = "\x{6BEB}";
print $char;  # Output: 毫

PHP:

$char = "\x{6BEB}";
echo $char;  // Output: 毫

Ruby:

char = "\u{6BEB}"
puts char  # Output: 毫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27627;</p>  <!-- Display: 毫 -->

HTML Hexadecimal:

<p>HTML hex: &#x6BEB;</p>  <!-- Display: 毫 -->

URL Encoding:

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

Encodings

MD5:

c5b0b9cd291c331c543b88a6e41a74d6

SHA1:

7c812c255199541c3084d6e9effcd5bb129737e1

Base64:

5q+r