Unicode Finder

"沁" U+6C81(CJK UNIFIED IDEOGRAPH-6C81)

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

Programming

C
\u6C81
JavaScript
\u6C81
Java
\u6C81
Json
\u6C81
Python
\u6C81
Perl
\x{6C81}
PHP
\x{6C81}
Ruby
\u{6C81}
Rust
\u{6C81}
Go
\u6C81

Web

CSS
\006C81
HtmlDecimal
沁
HtmlHexadecimal
沁
Url
%E6%B2%81

Code

MD5
96f70c77f595c5f2abd7376a5bd8ae90
Sha1
a1bc134121bfba99220bac17e4b58e769110bfeb
Base64
5rKB

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6C81';
console.log(char);  // Output: 沁

Java:

char c = '\u6C81';
System.out.println(c);  // Output: 沁

JSON:

{"text": "\u6C81"}  // Value: 沁

Python:

char = '\u6C81'
print(char)  # Output: 沁

Perl:

my $char = "\x{6C81}";
print $char;  # Output: 沁

PHP:

$char = "\x{6C81}";
echo $char;  // Output: 沁

Ruby:

char = "\u{6C81}"
puts char  # Output: 沁

Rust:

let c = '\u{6C81}';
println!("{}", c);  // Output: 沁

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006C81";  /* Display: 沁 */
}

HTML Decimal:

<p>HTML decimal: &#27777;</p>  <!-- Display: 沁 -->

HTML Hexadecimal:

<p>HTML hex: &#x6C81;</p>  <!-- Display: 沁 -->

URL Encoding:

// 沁 URL encoding
https://unicodefinder.com/search.php?query=%E6%B2%81

Encodings

MD5:

96f70c77f595c5f2abd7376a5bd8ae90

SHA1:

a1bc134121bfba99220bac17e4b58e769110bfeb

Base64:

5rKB