Unicode Finder

"蕅" U+8545(CJK UNIFIED IDEOGRAPH-8545)

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

Programming

C
\u8545
JavaScript
\u8545
Java
\u8545
Json
\u8545
Python
\u8545
Perl
\x{8545}
PHP
\x{8545}
Ruby
\u{8545}
Rust
\u{8545}
Go
\u8545

Web

CSS
\008545
HtmlDecimal
蕅
HtmlHexadecimal
蕅
Url
%E8%95%85

Code

MD5
05030087d2a2c82d1afffdc49c6e20a8
Sha1
d716f2ce1603c14954d27a1e21bd00913a018e2a
Base64
6JWF

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8545';
console.log(char);  // Output: 蕅

Java:

char c = '\u8545';
System.out.println(c);  // Output: 蕅

JSON:

{"text": "\u8545"}  // Value: 蕅

Python:

char = '\u8545'
print(char)  # Output: 蕅

Perl:

my $char = "\x{8545}";
print $char;  # Output: 蕅

PHP:

$char = "\x{8545}";
echo $char;  // Output: 蕅

Ruby:

char = "\u{8545}"
puts char  # Output: 蕅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008545";  /* Display: 蕅 */
}

HTML Decimal:

<p>HTML decimal: &#34117;</p>  <!-- Display: 蕅 -->

HTML Hexadecimal:

<p>HTML hex: &#x8545;</p>  <!-- Display: 蕅 -->

URL Encoding:

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

Encodings

MD5:

05030087d2a2c82d1afffdc49c6e20a8

SHA1:

d716f2ce1603c14954d27a1e21bd00913a018e2a

Base64:

6JWF