Unicode Finder

"挱" U+6331(CJK UNIFIED IDEOGRAPH-6331)

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

Programming

C
\u6331
JavaScript
\u6331
Java
\u6331
Json
\u6331
Python
\u6331
Perl
\x{6331}
PHP
\x{6331}
Ruby
\u{6331}
Rust
\u{6331}
Go
\u6331

Web

CSS
\006331
HtmlDecimal
挱
HtmlHexadecimal
挱
Url
%E6%8C%B1

Code

MD5
8bbf346c2a5d983edc8423fa8e1f8f1a
Sha1
fd9ca7eaa1bd17334f2ec0080bd8dd09b5ca666d
Base64
5oyx

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6331';
console.log(char);  // Output: 挱

Java:

char c = '\u6331';
System.out.println(c);  // Output: 挱

JSON:

{"text": "\u6331"}  // Value: 挱

Python:

char = '\u6331'
print(char)  # Output: 挱

Perl:

my $char = "\x{6331}";
print $char;  # Output: 挱

PHP:

$char = "\x{6331}";
echo $char;  // Output: 挱

Ruby:

char = "\u{6331}"
puts char  # Output: 挱

Rust:

let c = '\u{6331}';
println!("{}", c);  // Output: 挱

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006331";  /* Display: 挱 */
}

HTML Decimal:

<p>HTML decimal: &#25393;</p>  <!-- Display: 挱 -->

HTML Hexadecimal:

<p>HTML hex: &#x6331;</p>  <!-- Display: 挱 -->

URL Encoding:

// 挱 URL encoding
https://unicodefinder.com/search.php?query=%E6%8C%B1

Encodings

MD5:

8bbf346c2a5d983edc8423fa8e1f8f1a

SHA1:

fd9ca7eaa1bd17334f2ec0080bd8dd09b5ca666d

Base64:

5oyx