Unicode Finder

"昏" U+660F(CJK UNIFIED IDEOGRAPH-660F)

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

Programming

C
\u660F
JavaScript
\u660F
Java
\u660F
Json
\u660F
Python
\u660F
Perl
\x{660F}
PHP
\x{660F}
Ruby
\u{660F}
Rust
\u{660F}
Go
\u660F

Web

CSS
\00660F
HtmlDecimal
昏
HtmlHexadecimal
昏
Url
%E6%98%8F

Code

MD5
878a4dd594ee743426923a51f73de5f7
Sha1
1ca1a4814e27b4225ecf6f53685644f544612516
Base64
5piP

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u660F';
console.log(char);  // Output: 昏

Java:

char c = '\u660F';
System.out.println(c);  // Output: 昏

JSON:

{"text": "\u660F"}  // Value: 昏

Python:

char = '\u660F'
print(char)  # Output: 昏

Perl:

my $char = "\x{660F}";
print $char;  # Output: 昏

PHP:

$char = "\x{660F}";
echo $char;  // Output: 昏

Ruby:

char = "\u{660F}"
puts char  # Output: 昏

Rust:

let c = '\u{660F}';
println!("{}", c);  // Output: 昏

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00660F";  /* Display: 昏 */
}

HTML Decimal:

<p>HTML decimal: &#26127;</p>  <!-- Display: 昏 -->

HTML Hexadecimal:

<p>HTML hex: &#x660F;</p>  <!-- Display: 昏 -->

URL Encoding:

// 昏 URL encoding
https://unicodefinder.com/search.php?query=%E6%98%8F

Encodings

MD5:

878a4dd594ee743426923a51f73de5f7

SHA1:

1ca1a4814e27b4225ecf6f53685644f544612516

Base64:

5piP