Unicode Finder

"涇" U+6D87(CJK UNIFIED IDEOGRAPH-6D87)

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

Programming

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

Web

CSS
\006D87
HtmlDecimal
涇
HtmlHexadecimal
涇
Url
%E6%B6%87

Code

MD5
8425f0af1f4c479bc4749d26d84805a3
Sha1
d3b61af69e14b7a79c886eb7ff957a098e6e5d54
Base64
5raH

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6D87';
console.log(char);  // Output: 涇

Java:

char c = '\u6D87';
System.out.println(c);  // Output: 涇

JSON:

{"text": "\u6D87"}  // Value: 涇

Python:

char = '\u6D87'
print(char)  # Output: 涇

Perl:

my $char = "\x{6D87}";
print $char;  # Output: 涇

PHP:

$char = "\x{6D87}";
echo $char;  // Output: 涇

Ruby:

char = "\u{6D87}"
puts char  # Output: 涇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28039;</p>  <!-- Display: 涇 -->

HTML Hexadecimal:

<p>HTML hex: &#x6D87;</p>  <!-- Display: 涇 -->

URL Encoding:

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

Encodings

MD5:

8425f0af1f4c479bc4749d26d84805a3

SHA1:

d3b61af69e14b7a79c886eb7ff957a098e6e5d54

Base64:

5raH