Unicode Finder

"昂" U+6602(CJK UNIFIED IDEOGRAPH-6602)

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

Programming

C
\u6602
JavaScript
\u6602
Java
\u6602
Json
\u6602
Python
\u6602
Perl
\x{6602}
PHP
\x{6602}
Ruby
\u{6602}
Rust
\u{6602}
Go
\u6602

Web

CSS
\006602
HtmlDecimal
昂
HtmlHexadecimal
昂
Url
%E6%98%82

Code

MD5
99e781766adc78ed0612213a60e1d448
Sha1
cb2747af180c20566c7b0e28cf16afe6df212c30
Base64
5piC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6602';
console.log(char);  // Output: 昂

Java:

char c = '\u6602';
System.out.println(c);  // Output: 昂

JSON:

{"text": "\u6602"}  // Value: 昂

Python:

char = '\u6602'
print(char)  # Output: 昂

Perl:

my $char = "\x{6602}";
print $char;  # Output: 昂

PHP:

$char = "\x{6602}";
echo $char;  // Output: 昂

Ruby:

char = "\u{6602}"
puts char  # Output: 昂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006602";  /* Display: 昂 */
}

HTML Decimal:

<p>HTML decimal: &#26114;</p>  <!-- Display: 昂 -->

HTML Hexadecimal:

<p>HTML hex: &#x6602;</p>  <!-- Display: 昂 -->

URL Encoding:

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

Encodings

MD5:

99e781766adc78ed0612213a60e1d448

SHA1:

cb2747af180c20566c7b0e28cf16afe6df212c30

Base64:

5piC