Unicode Finder

"杽" U+677D(CJK UNIFIED IDEOGRAPH-677D)

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

Programming

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

Web

CSS
\00677D
HtmlDecimal
杽
HtmlHexadecimal
杽
Url
%E6%9D%BD

Code

MD5
42c31afc6b1f09ec9603910e0b932336
Sha1
e2e3a5d240a57dae429fe2079b4811f588e8bfb8
Base64
5p29

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u677D';
console.log(char);  // Output: 杽

Java:

char c = '\u677D';
System.out.println(c);  // Output: 杽

JSON:

{"text": "\u677D"}  // Value: 杽

Python:

char = '\u677D'
print(char)  # Output: 杽

Perl:

my $char = "\x{677D}";
print $char;  # Output: 杽

PHP:

$char = "\x{677D}";
echo $char;  // Output: 杽

Ruby:

char = "\u{677D}"
puts char  # Output: 杽

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26493;</p>  <!-- Display: 杽 -->

HTML Hexadecimal:

<p>HTML hex: &#x677D;</p>  <!-- Display: 杽 -->

URL Encoding:

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

Encodings

MD5:

42c31afc6b1f09ec9603910e0b932336

SHA1:

e2e3a5d240a57dae429fe2079b4811f588e8bfb8

Base64:

5p29