Unicode Finder

"衡" U+8861(CJK UNIFIED IDEOGRAPH-8861)

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

Programming

C
\u8861
JavaScript
\u8861
Java
\u8861
Json
\u8861
Python
\u8861
Perl
\x{8861}
PHP
\x{8861}
Ruby
\u{8861}
Rust
\u{8861}
Go
\u8861

Web

CSS
\008861
HtmlDecimal
衡
HtmlHexadecimal
衡
Url
%E8%A1%A1

Code

MD5
37b3cff985268c7a940c1f2de78e4ee9
Sha1
ef551ec7acb505676be4a20fd418087f030fa691
Base64
6KGh

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8861';
console.log(char);  // Output: 衡

Java:

char c = '\u8861';
System.out.println(c);  // Output: 衡

JSON:

{"text": "\u8861"}  // Value: 衡

Python:

char = '\u8861'
print(char)  # Output: 衡

Perl:

my $char = "\x{8861}";
print $char;  # Output: 衡

PHP:

$char = "\x{8861}";
echo $char;  // Output: 衡

Ruby:

char = "\u{8861}"
puts char  # Output: 衡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008861";  /* Display: 衡 */
}

HTML Decimal:

<p>HTML decimal: &#34913;</p>  <!-- Display: 衡 -->

HTML Hexadecimal:

<p>HTML hex: &#x8861;</p>  <!-- Display: 衡 -->

URL Encoding:

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

Encodings

MD5:

37b3cff985268c7a940c1f2de78e4ee9

SHA1:

ef551ec7acb505676be4a20fd418087f030fa691

Base64:

6KGh