Unicode Finder

"枕" U+6795(CJK UNIFIED IDEOGRAPH-6795)

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

Programming

C
\u6795
JavaScript
\u6795
Java
\u6795
Json
\u6795
Python
\u6795
Perl
\x{6795}
PHP
\x{6795}
Ruby
\u{6795}
Rust
\u{6795}
Go
\u6795

Web

CSS
\006795
HtmlDecimal
枕
HtmlHexadecimal
枕
Url
%E6%9E%95

Code

MD5
1a483e2f73c1c722cf9a2efa0d22ca34
Sha1
66f7867eb2656033fa1b42fbc362c348f8c85f3b
Base64
5p6V

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6795';
console.log(char);  // Output: 枕

Java:

char c = '\u6795';
System.out.println(c);  // Output: 枕

JSON:

{"text": "\u6795"}  // Value: 枕

Python:

char = '\u6795'
print(char)  # Output: 枕

Perl:

my $char = "\x{6795}";
print $char;  # Output: 枕

PHP:

$char = "\x{6795}";
echo $char;  // Output: 枕

Ruby:

char = "\u{6795}"
puts char  # Output: 枕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006795";  /* Display: 枕 */
}

HTML Decimal:

<p>HTML decimal: &#26517;</p>  <!-- Display: 枕 -->

HTML Hexadecimal:

<p>HTML hex: &#x6795;</p>  <!-- Display: 枕 -->

URL Encoding:

// 枕 URL encoding
https://unicodefinder.com/search.php?query=%E6%9E%95

Encodings

MD5:

1a483e2f73c1c722cf9a2efa0d22ca34

SHA1:

66f7867eb2656033fa1b42fbc362c348f8c85f3b

Base64:

5p6V