Unicode Finder

"杇" U+6747(CJK UNIFIED IDEOGRAPH-6747)

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

Programming

C
\u6747
JavaScript
\u6747
Java
\u6747
Json
\u6747
Python
\u6747
Perl
\x{6747}
PHP
\x{6747}
Ruby
\u{6747}
Rust
\u{6747}
Go
\u6747

Web

CSS
\006747
HtmlDecimal
杇
HtmlHexadecimal
杇
Url
%E6%9D%87

Code

MD5
cb13220c57a3c48f9747eb92c9fcdb33
Sha1
8141393360ff2987c96a89e9932dcda056e1bdb8
Base64
5p2H

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6747';
console.log(char);  // Output: 杇

Java:

char c = '\u6747';
System.out.println(c);  // Output: 杇

JSON:

{"text": "\u6747"}  // Value: 杇

Python:

char = '\u6747'
print(char)  # Output: 杇

Perl:

my $char = "\x{6747}";
print $char;  # Output: 杇

PHP:

$char = "\x{6747}";
echo $char;  // Output: 杇

Ruby:

char = "\u{6747}"
puts char  # Output: 杇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006747";  /* Display: 杇 */
}

HTML Decimal:

<p>HTML decimal: &#26439;</p>  <!-- Display: 杇 -->

HTML Hexadecimal:

<p>HTML hex: &#x6747;</p>  <!-- Display: 杇 -->

URL Encoding:

// 杇 URL encoding
https://unicodefinder.com/search.php?query=%E6%9D%87

Encodings

MD5:

cb13220c57a3c48f9747eb92c9fcdb33

SHA1:

8141393360ff2987c96a89e9932dcda056e1bdb8

Base64:

5p2H