Unicode Finder

"昴" U+6634(CJK UNIFIED IDEOGRAPH-6634)

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

Programming

C
\u6634
JavaScript
\u6634
Java
\u6634
Json
\u6634
Python
\u6634
Perl
\x{6634}
PHP
\x{6634}
Ruby
\u{6634}
Rust
\u{6634}
Go
\u6634

Web

CSS
\006634
HtmlDecimal
昴
HtmlHexadecimal
昴
Url
%E6%98%B4

Code

MD5
7e2b70d540ddc544236e103f72536433
Sha1
2c5b80ee0d32b9a37d01e19a53528addd5785518
Base64
5pi0

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6634';
console.log(char);  // Output: 昴

Java:

char c = '\u6634';
System.out.println(c);  // Output: 昴

JSON:

{"text": "\u6634"}  // Value: 昴

Python:

char = '\u6634'
print(char)  # Output: 昴

Perl:

my $char = "\x{6634}";
print $char;  # Output: 昴

PHP:

$char = "\x{6634}";
echo $char;  // Output: 昴

Ruby:

char = "\u{6634}"
puts char  # Output: 昴

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006634";  /* Display: 昴 */
}

HTML Decimal:

<p>HTML decimal: &#26164;</p>  <!-- Display: 昴 -->

HTML Hexadecimal:

<p>HTML hex: &#x6634;</p>  <!-- Display: 昴 -->

URL Encoding:

// 昴 URL encoding
https://unicodefinder.com/search.php?query=%E6%98%B4

Encodings

MD5:

7e2b70d540ddc544236e103f72536433

SHA1:

2c5b80ee0d32b9a37d01e19a53528addd5785518

Base64:

5pi0