Unicode Finder

"昨" U+6628(CJK UNIFIED IDEOGRAPH-6628)

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

Programming

C
\u6628
JavaScript
\u6628
Java
\u6628
Json
\u6628
Python
\u6628
Perl
\x{6628}
PHP
\x{6628}
Ruby
\u{6628}
Rust
\u{6628}
Go
\u6628

Web

CSS
\006628
HtmlDecimal
昨
HtmlHexadecimal
昨
Url
%E6%98%A8

Code

MD5
ccbcdbcd3f9666ff24fbf0e3d98a8ab5
Sha1
8f0005d18f7ec24fc3224aee1e324bedccbffcca
Base64
5pio

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6628';
console.log(char);  // Output: 昨

Java:

char c = '\u6628';
System.out.println(c);  // Output: 昨

JSON:

{"text": "\u6628"}  // Value: 昨

Python:

char = '\u6628'
print(char)  # Output: 昨

Perl:

my $char = "\x{6628}";
print $char;  # Output: 昨

PHP:

$char = "\x{6628}";
echo $char;  // Output: 昨

Ruby:

char = "\u{6628}"
puts char  # Output: 昨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006628";  /* Display: 昨 */
}

HTML Decimal:

<p>HTML decimal: &#26152;</p>  <!-- Display: 昨 -->

HTML Hexadecimal:

<p>HTML hex: &#x6628;</p>  <!-- Display: 昨 -->

URL Encoding:

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

Encodings

MD5:

ccbcdbcd3f9666ff24fbf0e3d98a8ab5

SHA1:

8f0005d18f7ec24fc3224aee1e324bedccbffcca

Base64:

5pio