Unicode Finder

"薪" U+85AA(CJK UNIFIED IDEOGRAPH-85AA)

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

Programming

C
\u85AA
JavaScript
\u85AA
Java
\u85AA
Json
\u85AA
Python
\u85AA
Perl
\x{85AA}
PHP
\x{85AA}
Ruby
\u{85AA}
Rust
\u{85AA}
Go
\u85AA

Web

CSS
\0085AA
HtmlDecimal
薪
HtmlHexadecimal
薪
Url
%E8%96%AA

Code

MD5
86b092d98277bc0e95eceab3204a2dfa
Sha1
63eb2c7f01b4560649499a9e8984094867ddcdb1
Base64
6Jaq

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u85AA';
console.log(char);  // Output: 薪

Java:

char c = '\u85AA';
System.out.println(c);  // Output: 薪

JSON:

{"text": "\u85AA"}  // Value: 薪

Python:

char = '\u85AA'
print(char)  # Output: 薪

Perl:

my $char = "\x{85AA}";
print $char;  # Output: 薪

PHP:

$char = "\x{85AA}";
echo $char;  // Output: 薪

Ruby:

char = "\u{85AA}"
puts char  # Output: 薪

Rust:

let c = '\u{85AA}';
println!("{}", c);  // Output: 薪

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0085AA";  /* Display: 薪 */
}

HTML Decimal:

<p>HTML decimal: &#34218;</p>  <!-- Display: 薪 -->

HTML Hexadecimal:

<p>HTML hex: &#x85AA;</p>  <!-- Display: 薪 -->

URL Encoding:

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

Encodings

MD5:

86b092d98277bc0e95eceab3204a2dfa

SHA1:

63eb2c7f01b4560649499a9e8984094867ddcdb1

Base64:

6Jaq