Unicode Finder

"杼" U+677C(CJK UNIFIED IDEOGRAPH-677C)

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

Programming

C
\u677C
JavaScript
\u677C
Java
\u677C
Json
\u677C
Python
\u677C
Perl
\x{677C}
PHP
\x{677C}
Ruby
\u{677C}
Rust
\u{677C}
Go
\u677C

Web

CSS
\00677C
HtmlDecimal
杼
HtmlHexadecimal
杼
Url
%E6%9D%BC

Code

MD5
93ec47d672f45e85b06ba9cb2eec1873
Sha1
5fe165f21321d7e404814f973acdb471cf0c5de0
Base64
5p28

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u677C';
console.log(char);  // Output: 杼

Java:

char c = '\u677C';
System.out.println(c);  // Output: 杼

JSON:

{"text": "\u677C"}  // Value: 杼

Python:

char = '\u677C'
print(char)  # Output: 杼

Perl:

my $char = "\x{677C}";
print $char;  # Output: 杼

PHP:

$char = "\x{677C}";
echo $char;  // Output: 杼

Ruby:

char = "\u{677C}"
puts char  # Output: 杼

Rust:

let c = '\u{677C}';
println!("{}", c);  // Output: 杼

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00677C";  /* Display: 杼 */
}

HTML Decimal:

<p>HTML decimal: &#26492;</p>  <!-- Display: 杼 -->

HTML Hexadecimal:

<p>HTML hex: &#x677C;</p>  <!-- Display: 杼 -->

URL Encoding:

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

Encodings

MD5:

93ec47d672f45e85b06ba9cb2eec1873

SHA1:

5fe165f21321d7e404814f973acdb471cf0c5de0

Base64:

5p28