Unicode Finder

"杵" U+6775(CJK UNIFIED IDEOGRAPH-6775)

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

Programming

C
\u6775
JavaScript
\u6775
Java
\u6775
Json
\u6775
Python
\u6775
Perl
\x{6775}
PHP
\x{6775}
Ruby
\u{6775}
Rust
\u{6775}
Go
\u6775

Web

CSS
\006775
HtmlDecimal
杵
HtmlHexadecimal
杵
Url
%E6%9D%B5

Code

MD5
79890cd75a91e15e05219fdb4c48b072
Sha1
e57c10c3d5c8de80a6fc971d07afef4aa3826d3b
Base64
5p21

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6775';
console.log(char);  // Output: 杵

Java:

char c = '\u6775';
System.out.println(c);  // Output: 杵

JSON:

{"text": "\u6775"}  // Value: 杵

Python:

char = '\u6775'
print(char)  # Output: 杵

Perl:

my $char = "\x{6775}";
print $char;  # Output: 杵

PHP:

$char = "\x{6775}";
echo $char;  // Output: 杵

Ruby:

char = "\u{6775}"
puts char  # Output: 杵

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006775";  /* Display: 杵 */
}

HTML Decimal:

<p>HTML decimal: &#26485;</p>  <!-- Display: 杵 -->

HTML Hexadecimal:

<p>HTML hex: &#x6775;</p>  <!-- Display: 杵 -->

URL Encoding:

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

Encodings

MD5:

79890cd75a91e15e05219fdb4c48b072

SHA1:

e57c10c3d5c8de80a6fc971d07afef4aa3826d3b

Base64:

5p21