Unicode Finder

"蕨" U+8568(CJK UNIFIED IDEOGRAPH-8568)

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

Programming

C
\u8568
JavaScript
\u8568
Java
\u8568
Json
\u8568
Python
\u8568
Perl
\x{8568}
PHP
\x{8568}
Ruby
\u{8568}
Rust
\u{8568}
Go
\u8568

Web

CSS
\008568
HtmlDecimal
蕨
HtmlHexadecimal
蕨
Url
%E8%95%A8

Code

MD5
5eb4af8e2e8aedc5b7dc90f4cd168418
Sha1
c1553040f3914b3ca9286f99ef784e156d76cdeb
Base64
6JWo

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8568';
console.log(char);  // Output: 蕨

Java:

char c = '\u8568';
System.out.println(c);  // Output: 蕨

JSON:

{"text": "\u8568"}  // Value: 蕨

Python:

char = '\u8568'
print(char)  # Output: 蕨

Perl:

my $char = "\x{8568}";
print $char;  # Output: 蕨

PHP:

$char = "\x{8568}";
echo $char;  // Output: 蕨

Ruby:

char = "\u{8568}"
puts char  # Output: 蕨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008568";  /* Display: 蕨 */
}

HTML Decimal:

<p>HTML decimal: &#34152;</p>  <!-- Display: 蕨 -->

HTML Hexadecimal:

<p>HTML hex: &#x8568;</p>  <!-- Display: 蕨 -->

URL Encoding:

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

Encodings

MD5:

5eb4af8e2e8aedc5b7dc90f4cd168418

SHA1:

c1553040f3914b3ca9286f99ef784e156d76cdeb

Base64:

6JWo