Unicode Finder

"杧" U+6767(CJK UNIFIED IDEOGRAPH-6767)

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

Programming

C
\u6767
JavaScript
\u6767
Java
\u6767
Json
\u6767
Python
\u6767
Perl
\x{6767}
PHP
\x{6767}
Ruby
\u{6767}
Rust
\u{6767}
Go
\u6767

Web

CSS
\006767
HtmlDecimal
杧
HtmlHexadecimal
杧
Url
%E6%9D%A7

Code

MD5
7edbaa801dbd27cc0a3f931e98773663
Sha1
015ab897b3236b9f7ec41b700c262e21610d1191
Base64
5p2n

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6767';
console.log(char);  // Output: 杧

Java:

char c = '\u6767';
System.out.println(c);  // Output: 杧

JSON:

{"text": "\u6767"}  // Value: 杧

Python:

char = '\u6767'
print(char)  # Output: 杧

Perl:

my $char = "\x{6767}";
print $char;  # Output: 杧

PHP:

$char = "\x{6767}";
echo $char;  // Output: 杧

Ruby:

char = "\u{6767}"
puts char  # Output: 杧

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006767";  /* Display: 杧 */
}

HTML Decimal:

<p>HTML decimal: &#26471;</p>  <!-- Display: 杧 -->

HTML Hexadecimal:

<p>HTML hex: &#x6767;</p>  <!-- Display: 杧 -->

URL Encoding:

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

Encodings

MD5:

7edbaa801dbd27cc0a3f931e98773663

SHA1:

015ab897b3236b9f7ec41b700c262e21610d1191

Base64:

5p2n