Unicode Finder

"鉏" U+924F(CJK UNIFIED IDEOGRAPH-924F)

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

Programming

C
\u924F
JavaScript
\u924F
Java
\u924F
Json
\u924F
Python
\u924F
Perl
\x{924F}
PHP
\x{924F}
Ruby
\u{924F}
Rust
\u{924F}
Go
\u924F

Web

CSS
\00924F
HtmlDecimal
鉏
HtmlHexadecimal
鉏
Url
%E9%89%8F

Code

MD5
6f2b85e0e1e8885e1375a3ee5e7822f9
Sha1
7a81754617810dbdb85a8bdde7af34889a8435e7
Base64
6YmP

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u924F';
console.log(char);  // Output: 鉏

Java:

char c = '\u924F';
System.out.println(c);  // Output: 鉏

JSON:

{"text": "\u924F"}  // Value: 鉏

Python:

char = '\u924F'
print(char)  # Output: 鉏

Perl:

my $char = "\x{924F}";
print $char;  # Output: 鉏

PHP:

$char = "\x{924F}";
echo $char;  // Output: 鉏

Ruby:

char = "\u{924F}"
puts char  # Output: 鉏

Rust:

let c = '\u{924F}';
println!("{}", c);  // Output: 鉏

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00924F";  /* Display: 鉏 */
}

HTML Decimal:

<p>HTML decimal: &#37455;</p>  <!-- Display: 鉏 -->

HTML Hexadecimal:

<p>HTML hex: &#x924F;</p>  <!-- Display: 鉏 -->

URL Encoding:

// 鉏 URL encoding
https://unicodefinder.com/search.php?query=%E9%89%8F

Encodings

MD5:

6f2b85e0e1e8885e1375a3ee5e7822f9

SHA1:

7a81754617810dbdb85a8bdde7af34889a8435e7

Base64:

6YmP