Unicode Finder

"杔" U+6754(CJK UNIFIED IDEOGRAPH-6754)

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

Programming

C
\u6754
JavaScript
\u6754
Java
\u6754
Json
\u6754
Python
\u6754
Perl
\x{6754}
PHP
\x{6754}
Ruby
\u{6754}
Rust
\u{6754}
Go
\u6754

Web

CSS
\006754
HtmlDecimal
杔
HtmlHexadecimal
杔
Url
%E6%9D%94

Code

MD5
a24e5123e7575349929026fba6960716
Sha1
499fc1fc3e02a1923dc576d412d9392049dbed14
Base64
5p2U

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6754';
console.log(char);  // Output: 杔

Java:

char c = '\u6754';
System.out.println(c);  // Output: 杔

JSON:

{"text": "\u6754"}  // Value: 杔

Python:

char = '\u6754'
print(char)  # Output: 杔

Perl:

my $char = "\x{6754}";
print $char;  # Output: 杔

PHP:

$char = "\x{6754}";
echo $char;  // Output: 杔

Ruby:

char = "\u{6754}"
puts char  # Output: 杔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006754";  /* Display: 杔 */
}

HTML Decimal:

<p>HTML decimal: &#26452;</p>  <!-- Display: 杔 -->

HTML Hexadecimal:

<p>HTML hex: &#x6754;</p>  <!-- Display: 杔 -->

URL Encoding:

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

Encodings

MD5:

a24e5123e7575349929026fba6960716

SHA1:

499fc1fc3e02a1923dc576d412d9392049dbed14

Base64:

5p2U