Unicode Finder

"搡" U+6421(CJK UNIFIED IDEOGRAPH-6421)

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

Programming

C
\u6421
JavaScript
\u6421
Java
\u6421
Json
\u6421
Python
\u6421
Perl
\x{6421}
PHP
\x{6421}
Ruby
\u{6421}
Rust
\u{6421}
Go
\u6421

Web

CSS
\006421
HtmlDecimal
搡
HtmlHexadecimal
搡
Url
%E6%90%A1

Code

MD5
87fc4a661fa894a0eee7740f011a083f
Sha1
bc84b317912c16e1eacf190cb304333645e79342
Base64
5pCh

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6421';
console.log(char);  // Output: 搡

Java:

char c = '\u6421';
System.out.println(c);  // Output: 搡

JSON:

{"text": "\u6421"}  // Value: 搡

Python:

char = '\u6421'
print(char)  # Output: 搡

Perl:

my $char = "\x{6421}";
print $char;  # Output: 搡

PHP:

$char = "\x{6421}";
echo $char;  // Output: 搡

Ruby:

char = "\u{6421}"
puts char  # Output: 搡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006421";  /* Display: 搡 */
}

HTML Decimal:

<p>HTML decimal: &#25633;</p>  <!-- Display: 搡 -->

HTML Hexadecimal:

<p>HTML hex: &#x6421;</p>  <!-- Display: 搡 -->

URL Encoding:

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

Encodings

MD5:

87fc4a661fa894a0eee7740f011a083f

SHA1:

bc84b317912c16e1eacf190cb304333645e79342

Base64:

5pCh