Unicode Finder

"戀" U+6200(CJK UNIFIED IDEOGRAPH-6200)

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

Programming

C
\u6200
JavaScript
\u6200
Java
\u6200
Json
\u6200
Python
\u6200
Perl
\x{6200}
PHP
\x{6200}
Ruby
\u{6200}
Rust
\u{6200}
Go
\u6200

Web

CSS
\006200
HtmlDecimal
戀
HtmlHexadecimal
戀
Url
%E6%88%80

Code

MD5
db7439ca1ddfa45e20f3888c16807443
Sha1
66a88c48c48728c863ffbbd5c04fb0a0093b1d8c
Base64
5oiA

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6200';
console.log(char);  // Output: 戀

Java:

char c = '\u6200';
System.out.println(c);  // Output: 戀

JSON:

{"text": "\u6200"}  // Value: 戀

Python:

char = '\u6200'
print(char)  # Output: 戀

Perl:

my $char = "\x{6200}";
print $char;  # Output: 戀

PHP:

$char = "\x{6200}";
echo $char;  // Output: 戀

Ruby:

char = "\u{6200}"
puts char  # Output: 戀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006200";  /* Display: 戀 */
}

HTML Decimal:

<p>HTML decimal: &#25088;</p>  <!-- Display: 戀 -->

HTML Hexadecimal:

<p>HTML hex: &#x6200;</p>  <!-- Display: 戀 -->

URL Encoding:

// 戀 URL encoding
https://unicodefinder.com/search.php?query=%E6%88%80

Encodings

MD5:

db7439ca1ddfa45e20f3888c16807443

SHA1:

66a88c48c48728c863ffbbd5c04fb0a0093b1d8c

Base64:

5oiA