Unicode Finder

"梕" U+6895(CJK UNIFIED IDEOGRAPH-6895)

U+6895
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-6895

Programming

C
\u6895
JavaScript
\u6895
Java
\u6895
Json
\u6895
Python
\u6895
Perl
\x{6895}
PHP
\x{6895}
Ruby
\u{6895}
Rust
\u{6895}
Go
\u6895

Web

CSS
\006895
HtmlDecimal
梕
HtmlHexadecimal
梕
Url
%E6%A2%95

Code

MD5
841a3b22465c45e00873a663ab22dd12
Sha1
2ee341726482336f8b9009984eeb6cf036555081
Base64
5qKV

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6895';
console.log(char);  // Output: 梕

Java:

char c = '\u6895';
System.out.println(c);  // Output: 梕

JSON:

{"text": "\u6895"}  // Value: 梕

Python:

char = '\u6895'
print(char)  # Output: 梕

Perl:

my $char = "\x{6895}";
print $char;  # Output: 梕

PHP:

$char = "\x{6895}";
echo $char;  // Output: 梕

Ruby:

char = "\u{6895}"
puts char  # Output: 梕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006895";  /* Display: 梕 */
}

HTML Decimal:

<p>HTML decimal: &#26773;</p>  <!-- Display: 梕 -->

HTML Hexadecimal:

<p>HTML hex: &#x6895;</p>  <!-- Display: 梕 -->

URL Encoding:

// 梕 URL encoding
https://unicodefinder.com/search.php?query=%E6%A2%95

Encodings

MD5:

841a3b22465c45e00873a663ab22dd12

SHA1:

2ee341726482336f8b9009984eeb6cf036555081

Base64:

5qKV