Unicode Finder

"摆" U+6446(CJK UNIFIED IDEOGRAPH-6446)

U+6446
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-6446

Programming

C
\u6446
JavaScript
\u6446
Java
\u6446
Json
\u6446
Python
\u6446
Perl
\x{6446}
PHP
\x{6446}
Ruby
\u{6446}
Rust
\u{6446}
Go
\u6446

Web

CSS
\006446
HtmlDecimal
摆
HtmlHexadecimal
摆
Url
%E6%91%86

Code

MD5
f11b1a68a2c29151aaa9436da1a559be
Sha1
88fc5b43165478aedcb00cb362356ed5cd5ce94f
Base64
5pGG

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6446';
console.log(char);  // Output: 摆

Java:

char c = '\u6446';
System.out.println(c);  // Output: 摆

JSON:

{"text": "\u6446"}  // Value: 摆

Python:

char = '\u6446'
print(char)  # Output: 摆

Perl:

my $char = "\x{6446}";
print $char;  # Output: 摆

PHP:

$char = "\x{6446}";
echo $char;  // Output: 摆

Ruby:

char = "\u{6446}"
puts char  # Output: 摆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006446";  /* Display: 摆 */
}

HTML Decimal:

<p>HTML decimal: &#25670;</p>  <!-- Display: 摆 -->

HTML Hexadecimal:

<p>HTML hex: &#x6446;</p>  <!-- Display: 摆 -->

URL Encoding:

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

Encodings

MD5:

f11b1a68a2c29151aaa9436da1a559be

SHA1:

88fc5b43165478aedcb00cb362356ed5cd5ce94f

Base64:

5pGG