Unicode Finder

"葩" U+8469(CJK UNIFIED IDEOGRAPH-8469)

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

Programming

C
\u8469
JavaScript
\u8469
Java
\u8469
Json
\u8469
Python
\u8469
Perl
\x{8469}
PHP
\x{8469}
Ruby
\u{8469}
Rust
\u{8469}
Go
\u8469

Web

CSS
\008469
HtmlDecimal
葩
HtmlHexadecimal
葩
Url
%E8%91%A9

Code

MD5
81088a1c9acd433da4a03af82892f276
Sha1
d7e9524c652bde7e24556160c8d10bcddff39e18
Base64
6JGp

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8469';
console.log(char);  // Output: 葩

Java:

char c = '\u8469';
System.out.println(c);  // Output: 葩

JSON:

{"text": "\u8469"}  // Value: 葩

Python:

char = '\u8469'
print(char)  # Output: 葩

Perl:

my $char = "\x{8469}";
print $char;  # Output: 葩

PHP:

$char = "\x{8469}";
echo $char;  // Output: 葩

Ruby:

char = "\u{8469}"
puts char  # Output: 葩

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008469";  /* Display: 葩 */
}

HTML Decimal:

<p>HTML decimal: &#33897;</p>  <!-- Display: 葩 -->

HTML Hexadecimal:

<p>HTML hex: &#x8469;</p>  <!-- Display: 葩 -->

URL Encoding:

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

Encodings

MD5:

81088a1c9acd433da4a03af82892f276

SHA1:

d7e9524c652bde7e24556160c8d10bcddff39e18

Base64:

6JGp