Unicode Finder

"蕡" U+8561(CJK UNIFIED IDEOGRAPH-8561)

U+8561
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-8561

Programming

C
\u8561
JavaScript
\u8561
Java
\u8561
Json
\u8561
Python
\u8561
Perl
\x{8561}
PHP
\x{8561}
Ruby
\u{8561}
Rust
\u{8561}
Go
\u8561

Web

CSS
\008561
HtmlDecimal
蕡
HtmlHexadecimal
蕡
Url
%E8%95%A1

Code

MD5
5d415ab490cc174c6371e672ef5096d4
Sha1
49cde919fa2a8098bec27b40b61b5be656c2823f
Base64
6JWh

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8561';
console.log(char);  // Output: 蕡

Java:

char c = '\u8561';
System.out.println(c);  // Output: 蕡

JSON:

{"text": "\u8561"}  // Value: 蕡

Python:

char = '\u8561'
print(char)  # Output: 蕡

Perl:

my $char = "\x{8561}";
print $char;  # Output: 蕡

PHP:

$char = "\x{8561}";
echo $char;  // Output: 蕡

Ruby:

char = "\u{8561}"
puts char  # Output: 蕡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008561";  /* Display: 蕡 */
}

HTML Decimal:

<p>HTML decimal: &#34145;</p>  <!-- Display: 蕡 -->

HTML Hexadecimal:

<p>HTML hex: &#x8561;</p>  <!-- Display: 蕡 -->

URL Encoding:

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

Encodings

MD5:

5d415ab490cc174c6371e672ef5096d4

SHA1:

49cde919fa2a8098bec27b40b61b5be656c2823f

Base64:

6JWh