Unicode Finder

"蔕" U+8515(CJK UNIFIED IDEOGRAPH-8515)

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

Programming

C
\u8515
JavaScript
\u8515
Java
\u8515
Json
\u8515
Python
\u8515
Perl
\x{8515}
PHP
\x{8515}
Ruby
\u{8515}
Rust
\u{8515}
Go
\u8515

Web

CSS
\008515
HtmlDecimal
蔕
HtmlHexadecimal
蔕
Url
%E8%94%95

Code

MD5
7da24aa439a942abae0b18837e47cee5
Sha1
c168d638781acfb9b2f84da52210a7bf8b59f05b
Base64
6JSV

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8515';
console.log(char);  // Output: 蔕

Java:

char c = '\u8515';
System.out.println(c);  // Output: 蔕

JSON:

{"text": "\u8515"}  // Value: 蔕

Python:

char = '\u8515'
print(char)  # Output: 蔕

Perl:

my $char = "\x{8515}";
print $char;  # Output: 蔕

PHP:

$char = "\x{8515}";
echo $char;  // Output: 蔕

Ruby:

char = "\u{8515}"
puts char  # Output: 蔕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008515";  /* Display: 蔕 */
}

HTML Decimal:

<p>HTML decimal: &#34069;</p>  <!-- Display: 蔕 -->

HTML Hexadecimal:

<p>HTML hex: &#x8515;</p>  <!-- Display: 蔕 -->

URL Encoding:

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

Encodings

MD5:

7da24aa439a942abae0b18837e47cee5

SHA1:

c168d638781acfb9b2f84da52210a7bf8b59f05b

Base64:

6JSV