Unicode Finder

"鐦" U+9426(CJK UNIFIED IDEOGRAPH-9426)

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

Programming

C
\u9426
JavaScript
\u9426
Java
\u9426
Json
\u9426
Python
\u9426
Perl
\x{9426}
PHP
\x{9426}
Ruby
\u{9426}
Rust
\u{9426}
Go
\u9426

Web

CSS
\009426
HtmlDecimal
鐦
HtmlHexadecimal
鐦
Url
%E9%90%A6

Code

MD5
dbe591ed6eed236397a168f9f613c0c7
Sha1
42a313858f18eb1ca2d42bc860dd66f3f879059e
Base64
6ZCm

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9426';
console.log(char);  // Output: 鐦

Java:

char c = '\u9426';
System.out.println(c);  // Output: 鐦

JSON:

{"text": "\u9426"}  // Value: 鐦

Python:

char = '\u9426'
print(char)  # Output: 鐦

Perl:

my $char = "\x{9426}";
print $char;  # Output: 鐦

PHP:

$char = "\x{9426}";
echo $char;  // Output: 鐦

Ruby:

char = "\u{9426}"
puts char  # Output: 鐦

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009426";  /* Display: 鐦 */
}

HTML Decimal:

<p>HTML decimal: &#37926;</p>  <!-- Display: 鐦 -->

HTML Hexadecimal:

<p>HTML hex: &#x9426;</p>  <!-- Display: 鐦 -->

URL Encoding:

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

Encodings

MD5:

dbe591ed6eed236397a168f9f613c0c7

SHA1:

42a313858f18eb1ca2d42bc860dd66f3f879059e

Base64:

6ZCm