Unicode Finder

"肅" U+8085(CJK UNIFIED IDEOGRAPH-8085)

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

Programming

C
\u8085
JavaScript
\u8085
Java
\u8085
Json
\u8085
Python
\u8085
Perl
\x{8085}
PHP
\x{8085}
Ruby
\u{8085}
Rust
\u{8085}
Go
\u8085

Web

CSS
\008085
HtmlDecimal
肅
HtmlHexadecimal
肅
Url
%E8%82%85

Code

MD5
35674eda9f6c60d2e514acddd7a7cca6
Sha1
fea45b01317a8e56ddc162e0a7a983a68a32a3e6
Base64
6IKF

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8085';
console.log(char);  // Output: 肅

Java:

char c = '\u8085';
System.out.println(c);  // Output: 肅

JSON:

{"text": "\u8085"}  // Value: 肅

Python:

char = '\u8085'
print(char)  # Output: 肅

Perl:

my $char = "\x{8085}";
print $char;  # Output: 肅

PHP:

$char = "\x{8085}";
echo $char;  // Output: 肅

Ruby:

char = "\u{8085}"
puts char  # Output: 肅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008085";  /* Display: 肅 */
}

HTML Decimal:

<p>HTML decimal: &#32901;</p>  <!-- Display: 肅 -->

HTML Hexadecimal:

<p>HTML hex: &#x8085;</p>  <!-- Display: 肅 -->

URL Encoding:

// 肅 URL encoding
https://unicodefinder.com/search.php?query=%E8%82%85

Encodings

MD5:

35674eda9f6c60d2e514acddd7a7cca6

SHA1:

fea45b01317a8e56ddc162e0a7a983a68a32a3e6

Base64:

6IKF