Unicode Finder

"薕" U+8595(CJK UNIFIED IDEOGRAPH-8595)

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

Programming

C
\u8595
JavaScript
\u8595
Java
\u8595
Json
\u8595
Python
\u8595
Perl
\x{8595}
PHP
\x{8595}
Ruby
\u{8595}
Rust
\u{8595}
Go
\u8595

Web

CSS
\008595
HtmlDecimal
薕
HtmlHexadecimal
薕
Url
%E8%96%95

Code

MD5
b375bc73f1397c943aea7308991cf27a
Sha1
c4d182d9b642a83266179a2a502ba56c843ecf40
Base64
6JaV

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8595';
console.log(char);  // Output: 薕

Java:

char c = '\u8595';
System.out.println(c);  // Output: 薕

JSON:

{"text": "\u8595"}  // Value: 薕

Python:

char = '\u8595'
print(char)  # Output: 薕

Perl:

my $char = "\x{8595}";
print $char;  # Output: 薕

PHP:

$char = "\x{8595}";
echo $char;  // Output: 薕

Ruby:

char = "\u{8595}"
puts char  # Output: 薕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008595";  /* Display: 薕 */
}

HTML Decimal:

<p>HTML decimal: &#34197;</p>  <!-- Display: 薕 -->

HTML Hexadecimal:

<p>HTML hex: &#x8595;</p>  <!-- Display: 薕 -->

URL Encoding:

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

Encodings

MD5:

b375bc73f1397c943aea7308991cf27a

SHA1:

c4d182d9b642a83266179a2a502ba56c843ecf40

Base64:

6JaV