Unicode Finder

"衙" U+8859(CJK UNIFIED IDEOGRAPH-8859)

U+8859
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-8859

Programming

C
\u8859
JavaScript
\u8859
Java
\u8859
Json
\u8859
Python
\u8859
Perl
\x{8859}
PHP
\x{8859}
Ruby
\u{8859}
Rust
\u{8859}
Go
\u8859

Web

CSS
\008859
HtmlDecimal
衙
HtmlHexadecimal
衙
Url
%E8%A1%99

Code

MD5
954606c7edf2f1686693b348e7f43709
Sha1
e5e8afcebe923dc6ee9ac3bfaaf9e83773a9f0f0
Base64
6KGZ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8859';
console.log(char);  // Output: 衙

Java:

char c = '\u8859';
System.out.println(c);  // Output: 衙

JSON:

{"text": "\u8859"}  // Value: 衙

Python:

char = '\u8859'
print(char)  # Output: 衙

Perl:

my $char = "\x{8859}";
print $char;  # Output: 衙

PHP:

$char = "\x{8859}";
echo $char;  // Output: 衙

Ruby:

char = "\u{8859}"
puts char  # Output: 衙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008859";  /* Display: 衙 */
}

HTML Decimal:

<p>HTML decimal: &#34905;</p>  <!-- Display: 衙 -->

HTML Hexadecimal:

<p>HTML hex: &#x8859;</p>  <!-- Display: 衙 -->

URL Encoding:

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

Encodings

MD5:

954606c7edf2f1686693b348e7f43709

SHA1:

e5e8afcebe923dc6ee9ac3bfaaf9e83773a9f0f0

Base64:

6KGZ