Unicode Finder

"攞" U+651E(CJK UNIFIED IDEOGRAPH-651E)

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

Programming

C
\u651E
JavaScript
\u651E
Java
\u651E
Json
\u651E
Python
\u651E
Perl
\x{651E}
PHP
\x{651E}
Ruby
\u{651E}
Rust
\u{651E}
Go
\u651E

Web

CSS
\00651E
HtmlDecimal
攞
HtmlHexadecimal
攞
Url
%E6%94%9E

Code

MD5
e9533887b497b55f9e3e7a1312a96cc5
Sha1
17d2670ae53e77768d651314533ac7bbf7d3c421
Base64
5pSe

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u651E';
console.log(char);  // Output: 攞

Java:

char c = '\u651E';
System.out.println(c);  // Output: 攞

JSON:

{"text": "\u651E"}  // Value: 攞

Python:

char = '\u651E'
print(char)  # Output: 攞

Perl:

my $char = "\x{651E}";
print $char;  # Output: 攞

PHP:

$char = "\x{651E}";
echo $char;  // Output: 攞

Ruby:

char = "\u{651E}"
puts char  # Output: 攞

Rust:

let c = '\u{651E}';
println!("{}", c);  // Output: 攞

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00651E";  /* Display: 攞 */
}

HTML Decimal:

<p>HTML decimal: &#25886;</p>  <!-- Display: 攞 -->

HTML Hexadecimal:

<p>HTML hex: &#x651E;</p>  <!-- Display: 攞 -->

URL Encoding:

// 攞 URL encoding
https://unicodefinder.com/search.php?query=%E6%94%9E

Encodings

MD5:

e9533887b497b55f9e3e7a1312a96cc5

SHA1:

17d2670ae53e77768d651314533ac7bbf7d3c421

Base64:

5pSe