Unicode Finder

"晕" U+6655(CJK UNIFIED IDEOGRAPH-6655)

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

Programming

C
\u6655
JavaScript
\u6655
Java
\u6655
Json
\u6655
Python
\u6655
Perl
\x{6655}
PHP
\x{6655}
Ruby
\u{6655}
Rust
\u{6655}
Go
\u6655

Web

CSS
\006655
HtmlDecimal
晕
HtmlHexadecimal
晕
Url
%E6%99%95

Code

MD5
b091fdcd4594e12dedac60135018fc12
Sha1
7490273efa7fefba0754ecb558bbbf55428db6f4
Base64
5pmV

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6655';
console.log(char);  // Output: 晕

Java:

char c = '\u6655';
System.out.println(c);  // Output: 晕

JSON:

{"text": "\u6655"}  // Value: 晕

Python:

char = '\u6655'
print(char)  # Output: 晕

Perl:

my $char = "\x{6655}";
print $char;  # Output: 晕

PHP:

$char = "\x{6655}";
echo $char;  // Output: 晕

Ruby:

char = "\u{6655}"
puts char  # Output: 晕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006655";  /* Display: 晕 */
}

HTML Decimal:

<p>HTML decimal: &#26197;</p>  <!-- Display: 晕 -->

HTML Hexadecimal:

<p>HTML hex: &#x6655;</p>  <!-- Display: 晕 -->

URL Encoding:

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

Encodings

MD5:

b091fdcd4594e12dedac60135018fc12

SHA1:

7490273efa7fefba0754ecb558bbbf55428db6f4

Base64:

5pmV