Unicode Finder

"杚" U+675A(CJK UNIFIED IDEOGRAPH-675A)

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

Programming

C
\u675A
JavaScript
\u675A
Java
\u675A
Json
\u675A
Python
\u675A
Perl
\x{675A}
PHP
\x{675A}
Ruby
\u{675A}
Rust
\u{675A}
Go
\u675A

Web

CSS
\00675A
HtmlDecimal
杚
HtmlHexadecimal
杚
Url
%E6%9D%9A

Code

MD5
ecc00c27af23e9be474f32288b7597f2
Sha1
5faa2d03937cc5ab96842a51f1f9eb9218c15afd
Base64
5p2a

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u675A';
console.log(char);  // Output: 杚

Java:

char c = '\u675A';
System.out.println(c);  // Output: 杚

JSON:

{"text": "\u675A"}  // Value: 杚

Python:

char = '\u675A'
print(char)  # Output: 杚

Perl:

my $char = "\x{675A}";
print $char;  # Output: 杚

PHP:

$char = "\x{675A}";
echo $char;  // Output: 杚

Ruby:

char = "\u{675A}"
puts char  # Output: 杚

Rust:

let c = '\u{675A}';
println!("{}", c);  // Output: 杚

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00675A";  /* Display: 杚 */
}

HTML Decimal:

<p>HTML decimal: &#26458;</p>  <!-- Display: 杚 -->

HTML Hexadecimal:

<p>HTML hex: &#x675A;</p>  <!-- Display: 杚 -->

URL Encoding:

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

Encodings

MD5:

ecc00c27af23e9be474f32288b7597f2

SHA1:

5faa2d03937cc5ab96842a51f1f9eb9218c15afd

Base64:

5p2a