Unicode Finder

"薯" U+85AF(CJK UNIFIED IDEOGRAPH-85AF)

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

Programming

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

Web

CSS
\0085AF
HtmlDecimal
薯
HtmlHexadecimal
薯
Url
%E8%96%AF

Code

MD5
cf9ce1920ea4ddcc72debfcd09afe97c
Sha1
d83584170f7cc7241c04a7b4ef70180787a2e3ff
Base64
6Jav

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u85AF';
console.log(char);  // Output: 薯

Java:

char c = '\u85AF';
System.out.println(c);  // Output: 薯

JSON:

{"text": "\u85AF"}  // Value: 薯

Python:

char = '\u85AF'
print(char)  # Output: 薯

Perl:

my $char = "\x{85AF}";
print $char;  # Output: 薯

PHP:

$char = "\x{85AF}";
echo $char;  // Output: 薯

Ruby:

char = "\u{85AF}"
puts char  # Output: 薯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#34223;</p>  <!-- Display: 薯 -->

HTML Hexadecimal:

<p>HTML hex: &#x85AF;</p>  <!-- Display: 薯 -->

URL Encoding:

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

Encodings

MD5:

cf9ce1920ea4ddcc72debfcd09afe97c

SHA1:

d83584170f7cc7241c04a7b4ef70180787a2e3ff

Base64:

6Jav