Unicode Finder

"蕳" U+8573(CJK UNIFIED IDEOGRAPH-8573)

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

Programming

C
\u8573
JavaScript
\u8573
Java
\u8573
Json
\u8573
Python
\u8573
Perl
\x{8573}
PHP
\x{8573}
Ruby
\u{8573}
Rust
\u{8573}
Go
\u8573

Web

CSS
\008573
HtmlDecimal
蕳
HtmlHexadecimal
蕳
Url
%E8%95%B3

Code

MD5
6a5621c48300aeecc4666bb908b4ebd5
Sha1
7559bfdac4cd06400ad0881ea381e41e6784ea5a
Base64
6JWz

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8573';
console.log(char);  // Output: 蕳

Java:

char c = '\u8573';
System.out.println(c);  // Output: 蕳

JSON:

{"text": "\u8573"}  // Value: 蕳

Python:

char = '\u8573'
print(char)  # Output: 蕳

Perl:

my $char = "\x{8573}";
print $char;  # Output: 蕳

PHP:

$char = "\x{8573}";
echo $char;  // Output: 蕳

Ruby:

char = "\u{8573}"
puts char  # Output: 蕳

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008573";  /* Display: 蕳 */
}

HTML Decimal:

<p>HTML decimal: &#34163;</p>  <!-- Display: 蕳 -->

HTML Hexadecimal:

<p>HTML hex: &#x8573;</p>  <!-- Display: 蕳 -->

URL Encoding:

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

Encodings

MD5:

6a5621c48300aeecc4666bb908b4ebd5

SHA1:

7559bfdac4cd06400ad0881ea381e41e6784ea5a

Base64:

6JWz