Unicode Finder

"搘" U+6418(CJK UNIFIED IDEOGRAPH-6418)

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

Programming

C
\u6418
JavaScript
\u6418
Java
\u6418
Json
\u6418
Python
\u6418
Perl
\x{6418}
PHP
\x{6418}
Ruby
\u{6418}
Rust
\u{6418}
Go
\u6418

Web

CSS
\006418
HtmlDecimal
搘
HtmlHexadecimal
搘
Url
%E6%90%98

Code

MD5
13e4bc7a049022b8449d45c01434bb90
Sha1
0ae3c5217a40c3d69a72db2aa5a7e1db88fcef89
Base64
5pCY

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6418';
console.log(char);  // Output: 搘

Java:

char c = '\u6418';
System.out.println(c);  // Output: 搘

JSON:

{"text": "\u6418"}  // Value: 搘

Python:

char = '\u6418'
print(char)  # Output: 搘

Perl:

my $char = "\x{6418}";
print $char;  # Output: 搘

PHP:

$char = "\x{6418}";
echo $char;  // Output: 搘

Ruby:

char = "\u{6418}"
puts char  # Output: 搘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006418";  /* Display: 搘 */
}

HTML Decimal:

<p>HTML decimal: &#25624;</p>  <!-- Display: 搘 -->

HTML Hexadecimal:

<p>HTML hex: &#x6418;</p>  <!-- Display: 搘 -->

URL Encoding:

// 搘 URL encoding
https://unicodefinder.com/search.php?query=%E6%90%98

Encodings

MD5:

13e4bc7a049022b8449d45c01434bb90

SHA1:

0ae3c5217a40c3d69a72db2aa5a7e1db88fcef89

Base64:

5pCY