Unicode Finder

"锄" U+9504(CJK UNIFIED IDEOGRAPH-9504)

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

Programming

C
\u9504
JavaScript
\u9504
Java
\u9504
Json
\u9504
Python
\u9504
Perl
\x{9504}
PHP
\x{9504}
Ruby
\u{9504}
Rust
\u{9504}
Go
\u9504

Web

CSS
\009504
HtmlDecimal
锄
HtmlHexadecimal
锄
Url
%E9%94%84

Code

MD5
249ec826cb42e421e0ee2a65f3125f4e
Sha1
8a308e0d5e92543b44256603bdf835d9bfa86528
Base64
6ZSE

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9504';
console.log(char);  // Output: 锄

Java:

char c = '\u9504';
System.out.println(c);  // Output: 锄

JSON:

{"text": "\u9504"}  // Value: 锄

Python:

char = '\u9504'
print(char)  # Output: 锄

Perl:

my $char = "\x{9504}";
print $char;  # Output: 锄

PHP:

$char = "\x{9504}";
echo $char;  // Output: 锄

Ruby:

char = "\u{9504}"
puts char  # Output: 锄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009504";  /* Display: 锄 */
}

HTML Decimal:

<p>HTML decimal: &#38148;</p>  <!-- Display: 锄 -->

HTML Hexadecimal:

<p>HTML hex: &#x9504;</p>  <!-- Display: 锄 -->

URL Encoding:

// 锄 URL encoding
https://unicodefinder.com/search.php?query=%E9%94%84

Encodings

MD5:

249ec826cb42e421e0ee2a65f3125f4e

SHA1:

8a308e0d5e92543b44256603bdf835d9bfa86528

Base64:

6ZSE