Unicode Finder

"蔇" U+8507(CJK UNIFIED IDEOGRAPH-8507)

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

Programming

C
\u8507
JavaScript
\u8507
Java
\u8507
Json
\u8507
Python
\u8507
Perl
\x{8507}
PHP
\x{8507}
Ruby
\u{8507}
Rust
\u{8507}
Go
\u8507

Web

CSS
\008507
HtmlDecimal
蔇
HtmlHexadecimal
蔇
Url
%E8%94%87

Code

MD5
a39726da4027e36b0f0c55350afdacc6
Sha1
116e0b2562f05c0bc70bc42602be3f35b1c9dffa
Base64
6JSH

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8507';
console.log(char);  // Output: 蔇

Java:

char c = '\u8507';
System.out.println(c);  // Output: 蔇

JSON:

{"text": "\u8507"}  // Value: 蔇

Python:

char = '\u8507'
print(char)  # Output: 蔇

Perl:

my $char = "\x{8507}";
print $char;  # Output: 蔇

PHP:

$char = "\x{8507}";
echo $char;  // Output: 蔇

Ruby:

char = "\u{8507}"
puts char  # Output: 蔇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008507";  /* Display: 蔇 */
}

HTML Decimal:

<p>HTML decimal: &#34055;</p>  <!-- Display: 蔇 -->

HTML Hexadecimal:

<p>HTML hex: &#x8507;</p>  <!-- Display: 蔇 -->

URL Encoding:

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

Encodings

MD5:

a39726da4027e36b0f0c55350afdacc6

SHA1:

116e0b2562f05c0bc70bc42602be3f35b1c9dffa

Base64:

6JSH