Unicode Finder

"蕧" U+8567(CJK UNIFIED IDEOGRAPH-8567)

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

Programming

C
\u8567
JavaScript
\u8567
Java
\u8567
Json
\u8567
Python
\u8567
Perl
\x{8567}
PHP
\x{8567}
Ruby
\u{8567}
Rust
\u{8567}
Go
\u8567

Web

CSS
\008567
HtmlDecimal
蕧
HtmlHexadecimal
蕧
Url
%E8%95%A7

Code

MD5
b77e609dde0c8b21bf40da7034c6e43e
Sha1
32b8d9ced1233cb31c5920a226998a1b6a91ee9e
Base64
6JWn

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8567';
console.log(char);  // Output: 蕧

Java:

char c = '\u8567';
System.out.println(c);  // Output: 蕧

JSON:

{"text": "\u8567"}  // Value: 蕧

Python:

char = '\u8567'
print(char)  # Output: 蕧

Perl:

my $char = "\x{8567}";
print $char;  # Output: 蕧

PHP:

$char = "\x{8567}";
echo $char;  // Output: 蕧

Ruby:

char = "\u{8567}"
puts char  # Output: 蕧

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008567";  /* Display: 蕧 */
}

HTML Decimal:

<p>HTML decimal: &#34151;</p>  <!-- Display: 蕧 -->

HTML Hexadecimal:

<p>HTML hex: &#x8567;</p>  <!-- Display: 蕧 -->

URL Encoding:

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

Encodings

MD5:

b77e609dde0c8b21bf40da7034c6e43e

SHA1:

32b8d9ced1233cb31c5920a226998a1b6a91ee9e

Base64:

6JWn