Unicode Finder

"搑" U+6411(CJK UNIFIED IDEOGRAPH-6411)

U+6411
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-6411

Programming

C
\u6411
JavaScript
\u6411
Java
\u6411
Json
\u6411
Python
\u6411
Perl
\x{6411}
PHP
\x{6411}
Ruby
\u{6411}
Rust
\u{6411}
Go
\u6411

Web

CSS
\006411
HtmlDecimal
搑
HtmlHexadecimal
搑
Url
%E6%90%91

Code

MD5
38ebf1d6a9817209b688bc799ecfd380
Sha1
d5e5368da82bef3e31e4b9e5610c5956f095f731
Base64
5pCR

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6411';
console.log(char);  // Output: 搑

Java:

char c = '\u6411';
System.out.println(c);  // Output: 搑

JSON:

{"text": "\u6411"}  // Value: 搑

Python:

char = '\u6411'
print(char)  # Output: 搑

Perl:

my $char = "\x{6411}";
print $char;  # Output: 搑

PHP:

$char = "\x{6411}";
echo $char;  // Output: 搑

Ruby:

char = "\u{6411}"
puts char  # Output: 搑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006411";  /* Display: 搑 */
}

HTML Decimal:

<p>HTML decimal: &#25617;</p>  <!-- Display: 搑 -->

HTML Hexadecimal:

<p>HTML hex: &#x6411;</p>  <!-- Display: 搑 -->

URL Encoding:

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

Encodings

MD5:

38ebf1d6a9817209b688bc799ecfd380

SHA1:

d5e5368da82bef3e31e4b9e5610c5956f095f731

Base64:

5pCR