Unicode Finder

"蔉" U+8509(CJK UNIFIED IDEOGRAPH-8509)

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

Programming

C
\u8509
JavaScript
\u8509
Java
\u8509
Json
\u8509
Python
\u8509
Perl
\x{8509}
PHP
\x{8509}
Ruby
\u{8509}
Rust
\u{8509}
Go
\u8509

Web

CSS
\008509
HtmlDecimal
蔉
HtmlHexadecimal
蔉
Url
%E8%94%89

Code

MD5
0402bed7633746db80b476019cbe3574
Sha1
d6e9ded293e381e9a4345892920eb727b17a2c64
Base64
6JSJ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8509';
console.log(char);  // Output: 蔉

Java:

char c = '\u8509';
System.out.println(c);  // Output: 蔉

JSON:

{"text": "\u8509"}  // Value: 蔉

Python:

char = '\u8509'
print(char)  # Output: 蔉

Perl:

my $char = "\x{8509}";
print $char;  # Output: 蔉

PHP:

$char = "\x{8509}";
echo $char;  // Output: 蔉

Ruby:

char = "\u{8509}"
puts char  # Output: 蔉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008509";  /* Display: 蔉 */
}

HTML Decimal:

<p>HTML decimal: &#34057;</p>  <!-- Display: 蔉 -->

HTML Hexadecimal:

<p>HTML hex: &#x8509;</p>  <!-- Display: 蔉 -->

URL Encoding:

// 蔉 URL encoding
https://unicodefinder.com/search.php?query=%E8%94%89

Encodings

MD5:

0402bed7633746db80b476019cbe3574

SHA1:

d6e9ded293e381e9a4345892920eb727b17a2c64

Base64:

6JSJ