Unicode Finder

"杹" U+6779(CJK UNIFIED IDEOGRAPH-6779)

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

Programming

C
\u6779
JavaScript
\u6779
Java
\u6779
Json
\u6779
Python
\u6779
Perl
\x{6779}
PHP
\x{6779}
Ruby
\u{6779}
Rust
\u{6779}
Go
\u6779

Web

CSS
\006779
HtmlDecimal
杹
HtmlHexadecimal
杹
Url
%E6%9D%B9

Code

MD5
37ec12e43c2995c64fff3e1911826f50
Sha1
3e8bc6ad1ddf8eb14cd6673fb27ef414ddced948
Base64
5p25

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6779';
console.log(char);  // Output: 杹

Java:

char c = '\u6779';
System.out.println(c);  // Output: 杹

JSON:

{"text": "\u6779"}  // Value: 杹

Python:

char = '\u6779'
print(char)  # Output: 杹

Perl:

my $char = "\x{6779}";
print $char;  # Output: 杹

PHP:

$char = "\x{6779}";
echo $char;  // Output: 杹

Ruby:

char = "\u{6779}"
puts char  # Output: 杹

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006779";  /* Display: 杹 */
}

HTML Decimal:

<p>HTML decimal: &#26489;</p>  <!-- Display: 杹 -->

HTML Hexadecimal:

<p>HTML hex: &#x6779;</p>  <!-- Display: 杹 -->

URL Encoding:

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

Encodings

MD5:

37ec12e43c2995c64fff3e1911826f50

SHA1:

3e8bc6ad1ddf8eb14cd6673fb27ef414ddced948

Base64:

5p25