Unicode Finder

"薌" U+858C(CJK UNIFIED IDEOGRAPH-858C)

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

Programming

C
\u858C
JavaScript
\u858C
Java
\u858C
Json
\u858C
Python
\u858C
Perl
\x{858C}
PHP
\x{858C}
Ruby
\u{858C}
Rust
\u{858C}
Go
\u858C

Web

CSS
\00858C
HtmlDecimal
薌
HtmlHexadecimal
薌
Url
%E8%96%8C

Code

MD5
45b406150dbd2cefe2cddba3ff1e278e
Sha1
ef07fc08810fe746df36deabeb56e5ce260c8a97
Base64
6JaM

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u858C';
console.log(char);  // Output: 薌

Java:

char c = '\u858C';
System.out.println(c);  // Output: 薌

JSON:

{"text": "\u858C"}  // Value: 薌

Python:

char = '\u858C'
print(char)  # Output: 薌

Perl:

my $char = "\x{858C}";
print $char;  # Output: 薌

PHP:

$char = "\x{858C}";
echo $char;  // Output: 薌

Ruby:

char = "\u{858C}"
puts char  # Output: 薌

Rust:

let c = '\u{858C}';
println!("{}", c);  // Output: 薌

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00858C";  /* Display: 薌 */
}

HTML Decimal:

<p>HTML decimal: &#34188;</p>  <!-- Display: 薌 -->

HTML Hexadecimal:

<p>HTML hex: &#x858C;</p>  <!-- Display: 薌 -->

URL Encoding:

// 薌 URL encoding
https://unicodefinder.com/search.php?query=%E8%96%8C

Encodings

MD5:

45b406150dbd2cefe2cddba3ff1e278e

SHA1:

ef07fc08810fe746df36deabeb56e5ce260c8a97

Base64:

6JaM