Unicode Finder

"文" U+6587(CJK UNIFIED IDEOGRAPH-6587)

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

Programming

C
\u6587
JavaScript
\u6587
Java
\u6587
Json
\u6587
Python
\u6587
Perl
\x{6587}
PHP
\x{6587}
Ruby
\u{6587}
Rust
\u{6587}
Go
\u6587

Web

CSS
\006587
HtmlDecimal
文
HtmlHexadecimal
文
Url
%E6%96%87

Code

MD5
56b69ecf5143f36f8f772d49968d60f5
Sha1
1d56b27a5e87fc5e904b4e2d4e69df8af994fbef
Base64
5paH

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6587';
console.log(char);  // Output: 文

Java:

char c = '\u6587';
System.out.println(c);  // Output: 文

JSON:

{"text": "\u6587"}  // Value: 文

Python:

char = '\u6587'
print(char)  # Output: 文

Perl:

my $char = "\x{6587}";
print $char;  # Output: 文

PHP:

$char = "\x{6587}";
echo $char;  // Output: 文

Ruby:

char = "\u{6587}"
puts char  # Output: 文

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006587";  /* Display: 文 */
}

HTML Decimal:

<p>HTML decimal: &#25991;</p>  <!-- Display: 文 -->

HTML Hexadecimal:

<p>HTML hex: &#x6587;</p>  <!-- Display: 文 -->

URL Encoding:

// 文 URL encoding
https://unicodefinder.com/search.php?query=%E6%96%87

Encodings

MD5:

56b69ecf5143f36f8f772d49968d60f5

SHA1:

1d56b27a5e87fc5e904b4e2d4e69df8af994fbef

Base64:

5paH