Unicode Finder

"杘" U+6758(CJK UNIFIED IDEOGRAPH-6758)

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

Programming

C
\u6758
JavaScript
\u6758
Java
\u6758
Json
\u6758
Python
\u6758
Perl
\x{6758}
PHP
\x{6758}
Ruby
\u{6758}
Rust
\u{6758}
Go
\u6758

Web

CSS
\006758
HtmlDecimal
杘
HtmlHexadecimal
杘
Url
%E6%9D%98

Code

MD5
2fa40591bb8a1eff227ee8edbd159b29
Sha1
69c0c45d7c8ccb40ee3c61fd6e75ec68ea7ff19e
Base64
5p2Y

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6758';
console.log(char);  // Output: 杘

Java:

char c = '\u6758';
System.out.println(c);  // Output: 杘

JSON:

{"text": "\u6758"}  // Value: 杘

Python:

char = '\u6758'
print(char)  # Output: 杘

Perl:

my $char = "\x{6758}";
print $char;  # Output: 杘

PHP:

$char = "\x{6758}";
echo $char;  // Output: 杘

Ruby:

char = "\u{6758}"
puts char  # Output: 杘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006758";  /* Display: 杘 */
}

HTML Decimal:

<p>HTML decimal: &#26456;</p>  <!-- Display: 杘 -->

HTML Hexadecimal:

<p>HTML hex: &#x6758;</p>  <!-- Display: 杘 -->

URL Encoding:

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

Encodings

MD5:

2fa40591bb8a1eff227ee8edbd159b29

SHA1:

69c0c45d7c8ccb40ee3c61fd6e75ec68ea7ff19e

Base64:

5p2Y