Unicode Finder

"杙" U+6759(CJK UNIFIED IDEOGRAPH-6759)

U+6759
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-6759

Programming

C
\u6759
JavaScript
\u6759
Java
\u6759
Json
\u6759
Python
\u6759
Perl
\x{6759}
PHP
\x{6759}
Ruby
\u{6759}
Rust
\u{6759}
Go
\u6759

Web

CSS
\006759
HtmlDecimal
杙
HtmlHexadecimal
杙
Url
%E6%9D%99

Code

MD5
904fd7cab885a3abf6b2627908b9ae0d
Sha1
3bea41c9dba068449b37b18d3836f63ed0e952c0
Base64
5p2Z

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6759';
console.log(char);  // Output: 杙

Java:

char c = '\u6759';
System.out.println(c);  // Output: 杙

JSON:

{"text": "\u6759"}  // Value: 杙

Python:

char = '\u6759'
print(char)  # Output: 杙

Perl:

my $char = "\x{6759}";
print $char;  # Output: 杙

PHP:

$char = "\x{6759}";
echo $char;  // Output: 杙

Ruby:

char = "\u{6759}"
puts char  # Output: 杙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006759";  /* Display: 杙 */
}

HTML Decimal:

<p>HTML decimal: &#26457;</p>  <!-- Display: 杙 -->

HTML Hexadecimal:

<p>HTML hex: &#x6759;</p>  <!-- Display: 杙 -->

URL Encoding:

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

Encodings

MD5:

904fd7cab885a3abf6b2627908b9ae0d

SHA1:

3bea41c9dba068449b37b18d3836f63ed0e952c0

Base64:

5p2Z