Unicode Finder

"来" U+6765(CJK UNIFIED IDEOGRAPH-6765)

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

Programming

C
\u6765
JavaScript
\u6765
Java
\u6765
Json
\u6765
Python
\u6765
Perl
\x{6765}
PHP
\x{6765}
Ruby
\u{6765}
Rust
\u{6765}
Go
\u6765

Web

CSS
\006765
HtmlDecimal
来
HtmlHexadecimal
来
Url
%E6%9D%A5

Code

MD5
f7b0a3bd20fd66dcf7e0c0da99a3536b
Sha1
4b1d6193e4982da86149642032d99991f46d71cd
Base64
5p2l

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6765';
console.log(char);  // Output: 来

Java:

char c = '\u6765';
System.out.println(c);  // Output: 来

JSON:

{"text": "\u6765"}  // Value: 来

Python:

char = '\u6765'
print(char)  # Output: 来

Perl:

my $char = "\x{6765}";
print $char;  # Output: 来

PHP:

$char = "\x{6765}";
echo $char;  // Output: 来

Ruby:

char = "\u{6765}"
puts char  # Output: 来

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006765";  /* Display: 来 */
}

HTML Decimal:

<p>HTML decimal: &#26469;</p>  <!-- Display: 来 -->

HTML Hexadecimal:

<p>HTML hex: &#x6765;</p>  <!-- Display: 来 -->

URL Encoding:

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

Encodings

MD5:

f7b0a3bd20fd66dcf7e0c0da99a3536b

SHA1:

4b1d6193e4982da86149642032d99991f46d71cd

Base64:

5p2l