Unicode Finder

"薅" U+8585(CJK UNIFIED IDEOGRAPH-8585)

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

Programming

C
\u8585
JavaScript
\u8585
Java
\u8585
Json
\u8585
Python
\u8585
Perl
\x{8585}
PHP
\x{8585}
Ruby
\u{8585}
Rust
\u{8585}
Go
\u8585

Web

CSS
\008585
HtmlDecimal
薅
HtmlHexadecimal
薅
Url
%E8%96%85

Code

MD5
89849ce94787455b31ccb0f6c00c101d
Sha1
e59783c3460ac2f9c822e2b2f833e3045c3ce2f2
Base64
6JaF

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8585';
console.log(char);  // Output: 薅

Java:

char c = '\u8585';
System.out.println(c);  // Output: 薅

JSON:

{"text": "\u8585"}  // Value: 薅

Python:

char = '\u8585'
print(char)  # Output: 薅

Perl:

my $char = "\x{8585}";
print $char;  # Output: 薅

PHP:

$char = "\x{8585}";
echo $char;  // Output: 薅

Ruby:

char = "\u{8585}"
puts char  # Output: 薅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008585";  /* Display: 薅 */
}

HTML Decimal:

<p>HTML decimal: &#34181;</p>  <!-- Display: 薅 -->

HTML Hexadecimal:

<p>HTML hex: &#x8585;</p>  <!-- Display: 薅 -->

URL Encoding:

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

Encodings

MD5:

89849ce94787455b31ccb0f6c00c101d

SHA1:

e59783c3460ac2f9c822e2b2f833e3045c3ce2f2

Base64:

6JaF