Unicode Finder

"摘" U+6458(CJK UNIFIED IDEOGRAPH-6458)

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

Programming

C
\u6458
JavaScript
\u6458
Java
\u6458
Json
\u6458
Python
\u6458
Perl
\x{6458}
PHP
\x{6458}
Ruby
\u{6458}
Rust
\u{6458}
Go
\u6458

Web

CSS
\006458
HtmlDecimal
摘
HtmlHexadecimal
摘
Url
%E6%91%98

Code

MD5
90e5c05e5bb3e4bd7b30218355532821
Sha1
4fb9028037d6154ee0dbed787d940554682faf9d
Base64
5pGY

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6458';
console.log(char);  // Output: 摘

Java:

char c = '\u6458';
System.out.println(c);  // Output: 摘

JSON:

{"text": "\u6458"}  // Value: 摘

Python:

char = '\u6458'
print(char)  # Output: 摘

Perl:

my $char = "\x{6458}";
print $char;  # Output: 摘

PHP:

$char = "\x{6458}";
echo $char;  // Output: 摘

Ruby:

char = "\u{6458}"
puts char  # Output: 摘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006458";  /* Display: 摘 */
}

HTML Decimal:

<p>HTML decimal: &#25688;</p>  <!-- Display: 摘 -->

HTML Hexadecimal:

<p>HTML hex: &#x6458;</p>  <!-- Display: 摘 -->

URL Encoding:

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

Encodings

MD5:

90e5c05e5bb3e4bd7b30218355532821

SHA1:

4fb9028037d6154ee0dbed787d940554682faf9d

Base64:

5pGY