Unicode Finder

"镰" U+9570(CJK UNIFIED IDEOGRAPH-9570)

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

Programming

C
\u9570
JavaScript
\u9570
Java
\u9570
Json
\u9570
Python
\u9570
Perl
\x{9570}
PHP
\x{9570}
Ruby
\u{9570}
Rust
\u{9570}
Go
\u9570

Web

CSS
\009570
HtmlDecimal
镰
HtmlHexadecimal
镰
Url
%E9%95%B0

Code

MD5
6108a1a73241f4546e7dcf1188f35b2d
Sha1
6494edcc0e870f0f4a2b0ef27115ec77fd7f5dad
Base64
6ZWw

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9570';
console.log(char);  // Output: 镰

Java:

char c = '\u9570';
System.out.println(c);  // Output: 镰

JSON:

{"text": "\u9570"}  // Value: 镰

Python:

char = '\u9570'
print(char)  # Output: 镰

Perl:

my $char = "\x{9570}";
print $char;  # Output: 镰

PHP:

$char = "\x{9570}";
echo $char;  // Output: 镰

Ruby:

char = "\u{9570}"
puts char  # Output: 镰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009570";  /* Display: 镰 */
}

HTML Decimal:

<p>HTML decimal: &#38256;</p>  <!-- Display: 镰 -->

HTML Hexadecimal:

<p>HTML hex: &#x9570;</p>  <!-- Display: 镰 -->

URL Encoding:

// 镰 URL encoding
https://unicodefinder.com/search.php?query=%E9%95%B0

Encodings

MD5:

6108a1a73241f4546e7dcf1188f35b2d

SHA1:

6494edcc0e870f0f4a2b0ef27115ec77fd7f5dad

Base64:

6ZWw