Unicode Finder

"鐩" U+9429(CJK UNIFIED IDEOGRAPH-9429)

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

Programming

C
\u9429
JavaScript
\u9429
Java
\u9429
Json
\u9429
Python
\u9429
Perl
\x{9429}
PHP
\x{9429}
Ruby
\u{9429}
Rust
\u{9429}
Go
\u9429

Web

CSS
\009429
HtmlDecimal
鐩
HtmlHexadecimal
鐩
Url
%E9%90%A9

Code

MD5
ed9e3e7d9c7885fead5560f822b4b635
Sha1
364f52cf2e8dbd92b72bccfaef1833fa92b4c810
Base64
6ZCp

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9429';
console.log(char);  // Output: 鐩

Java:

char c = '\u9429';
System.out.println(c);  // Output: 鐩

JSON:

{"text": "\u9429"}  // Value: 鐩

Python:

char = '\u9429'
print(char)  # Output: 鐩

Perl:

my $char = "\x{9429}";
print $char;  # Output: 鐩

PHP:

$char = "\x{9429}";
echo $char;  // Output: 鐩

Ruby:

char = "\u{9429}"
puts char  # Output: 鐩

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009429";  /* Display: 鐩 */
}

HTML Decimal:

<p>HTML decimal: &#37929;</p>  <!-- Display: 鐩 -->

HTML Hexadecimal:

<p>HTML hex: &#x9429;</p>  <!-- Display: 鐩 -->

URL Encoding:

// 鐩 URL encoding
https://unicodefinder.com/search.php?query=%E9%90%A9

Encodings

MD5:

ed9e3e7d9c7885fead5560f822b4b635

SHA1:

364f52cf2e8dbd92b72bccfaef1833fa92b4c810

Base64:

6ZCp