Unicode Finder

"昸" U+6638(CJK UNIFIED IDEOGRAPH-6638)

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

Programming

C
\u6638
JavaScript
\u6638
Java
\u6638
Json
\u6638
Python
\u6638
Perl
\x{6638}
PHP
\x{6638}
Ruby
\u{6638}
Rust
\u{6638}
Go
\u6638

Web

CSS
\006638
HtmlDecimal
昸
HtmlHexadecimal
昸
Url
%E6%98%B8

Code

MD5
60f351471b6b11b715f4bd9348984361
Sha1
104b925b7ce49c823473cdff254bdb1fa9ad38bb
Base64
5pi4

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6638';
console.log(char);  // Output: 昸

Java:

char c = '\u6638';
System.out.println(c);  // Output: 昸

JSON:

{"text": "\u6638"}  // Value: 昸

Python:

char = '\u6638'
print(char)  # Output: 昸

Perl:

my $char = "\x{6638}";
print $char;  # Output: 昸

PHP:

$char = "\x{6638}";
echo $char;  // Output: 昸

Ruby:

char = "\u{6638}"
puts char  # Output: 昸

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006638";  /* Display: 昸 */
}

HTML Decimal:

<p>HTML decimal: &#26168;</p>  <!-- Display: 昸 -->

HTML Hexadecimal:

<p>HTML hex: &#x6638;</p>  <!-- Display: 昸 -->

URL Encoding:

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

Encodings

MD5:

60f351471b6b11b715f4bd9348984361

SHA1:

104b925b7ce49c823473cdff254bdb1fa9ad38bb

Base64:

5pi4