Unicode Finder

"晩" U+6669(CJK UNIFIED IDEOGRAPH-6669)

U+6669
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-6669

Programming

C
\u6669
JavaScript
\u6669
Java
\u6669
Json
\u6669
Python
\u6669
Perl
\x{6669}
PHP
\x{6669}
Ruby
\u{6669}
Rust
\u{6669}
Go
\u6669

Web

CSS
\006669
HtmlDecimal
晩
HtmlHexadecimal
晩
Url
%E6%99%A9

Code

MD5
ce32d370d75025eb0626e3b71a840463
Sha1
3fb8220f655d7ad3a89d9042bae2980c53c644f8
Base64
5pmp

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6669';
console.log(char);  // Output: 晩

Java:

char c = '\u6669';
System.out.println(c);  // Output: 晩

JSON:

{"text": "\u6669"}  // Value: 晩

Python:

char = '\u6669'
print(char)  # Output: 晩

Perl:

my $char = "\x{6669}";
print $char;  # Output: 晩

PHP:

$char = "\x{6669}";
echo $char;  // Output: 晩

Ruby:

char = "\u{6669}"
puts char  # Output: 晩

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006669";  /* Display: 晩 */
}

HTML Decimal:

<p>HTML decimal: &#26217;</p>  <!-- Display: 晩 -->

HTML Hexadecimal:

<p>HTML hex: &#x6669;</p>  <!-- Display: 晩 -->

URL Encoding:

// 晩 URL encoding
https://unicodefinder.com/search.php?query=%E6%99%A9

Encodings

MD5:

ce32d370d75025eb0626e3b71a840463

SHA1:

3fb8220f655d7ad3a89d9042bae2980c53c644f8

Base64:

5pmp