Unicode Finder

"薭" U+85AD(CJK UNIFIED IDEOGRAPH-85AD)

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

Programming

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

Web

CSS
\0085AD
HtmlDecimal
薭
HtmlHexadecimal
薭
Url
%E8%96%AD

Code

MD5
3ee4169778c3378b0723086e0f8700f3
Sha1
0d089074190920687ad4572f128a3cc0aa788ac0
Base64
6Jat

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u85AD';
console.log(char);  // Output: 薭

Java:

char c = '\u85AD';
System.out.println(c);  // Output: 薭

JSON:

{"text": "\u85AD"}  // Value: 薭

Python:

char = '\u85AD'
print(char)  # Output: 薭

Perl:

my $char = "\x{85AD}";
print $char;  # Output: 薭

PHP:

$char = "\x{85AD}";
echo $char;  // Output: 薭

Ruby:

char = "\u{85AD}"
puts char  # Output: 薭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#34221;</p>  <!-- Display: 薭 -->

HTML Hexadecimal:

<p>HTML hex: &#x85AD;</p>  <!-- Display: 薭 -->

URL Encoding:

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

Encodings

MD5:

3ee4169778c3378b0723086e0f8700f3

SHA1:

0d089074190920687ad4572f128a3cc0aa788ac0

Base64:

6Jat