Unicode Finder

"撇" U+6487(CJK UNIFIED IDEOGRAPH-6487)

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

Programming

C
\u6487
JavaScript
\u6487
Java
\u6487
Json
\u6487
Python
\u6487
Perl
\x{6487}
PHP
\x{6487}
Ruby
\u{6487}
Rust
\u{6487}
Go
\u6487

Web

CSS
\006487
HtmlDecimal
撇
HtmlHexadecimal
撇
Url
%E6%92%87

Code

MD5
ee0e87d82046d8e7de179d8b654deff2
Sha1
0b4cb1b1e55cfb0d06aaf5bfacea0c8accbdde0e
Base64
5pKH

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6487';
console.log(char);  // Output: 撇

Java:

char c = '\u6487';
System.out.println(c);  // Output: 撇

JSON:

{"text": "\u6487"}  // Value: 撇

Python:

char = '\u6487'
print(char)  # Output: 撇

Perl:

my $char = "\x{6487}";
print $char;  # Output: 撇

PHP:

$char = "\x{6487}";
echo $char;  // Output: 撇

Ruby:

char = "\u{6487}"
puts char  # Output: 撇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006487";  /* Display: 撇 */
}

HTML Decimal:

<p>HTML decimal: &#25735;</p>  <!-- Display: 撇 -->

HTML Hexadecimal:

<p>HTML hex: &#x6487;</p>  <!-- Display: 撇 -->

URL Encoding:

// 撇 URL encoding
https://unicodefinder.com/search.php?query=%E6%92%87

Encodings

MD5:

ee0e87d82046d8e7de179d8b654deff2

SHA1:

0b4cb1b1e55cfb0d06aaf5bfacea0c8accbdde0e

Base64:

5pKH