Unicode Finder

"蕩" U+8569(CJK UNIFIED IDEOGRAPH-8569)

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

Programming

C
\u8569
JavaScript
\u8569
Java
\u8569
Json
\u8569
Python
\u8569
Perl
\x{8569}
PHP
\x{8569}
Ruby
\u{8569}
Rust
\u{8569}
Go
\u8569

Web

CSS
\008569
HtmlDecimal
蕩
HtmlHexadecimal
蕩
Url
%E8%95%A9

Code

MD5
d6d3e048e00fd079c2d85d404bc8b97b
Sha1
1032786c5e425346022bf48add371bba2ed0e02a
Base64
6JWp

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8569';
console.log(char);  // Output: 蕩

Java:

char c = '\u8569';
System.out.println(c);  // Output: 蕩

JSON:

{"text": "\u8569"}  // Value: 蕩

Python:

char = '\u8569'
print(char)  # Output: 蕩

Perl:

my $char = "\x{8569}";
print $char;  # Output: 蕩

PHP:

$char = "\x{8569}";
echo $char;  // Output: 蕩

Ruby:

char = "\u{8569}"
puts char  # Output: 蕩

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008569";  /* Display: 蕩 */
}

HTML Decimal:

<p>HTML decimal: &#34153;</p>  <!-- Display: 蕩 -->

HTML Hexadecimal:

<p>HTML hex: &#x8569;</p>  <!-- Display: 蕩 -->

URL Encoding:

// 蕩 URL encoding
https://unicodefinder.com/search.php?query=%E8%95%A9

Encodings

MD5:

d6d3e048e00fd079c2d85d404bc8b97b

SHA1:

1032786c5e425346022bf48add371bba2ed0e02a

Base64:

6JWp