Unicode Finder

"鐖" U+9416(CJK UNIFIED IDEOGRAPH-9416)

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

Programming

C
\u9416
JavaScript
\u9416
Java
\u9416
Json
\u9416
Python
\u9416
Perl
\x{9416}
PHP
\x{9416}
Ruby
\u{9416}
Rust
\u{9416}
Go
\u9416

Web

CSS
\009416
HtmlDecimal
鐖
HtmlHexadecimal
鐖
Url
%E9%90%96

Code

MD5
a3c042710183a22ab4ce413eb6f7c1fb
Sha1
1312f7f6df4a6a7c708e56384361ab2c258ee550
Base64
6ZCW

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9416';
console.log(char);  // Output: 鐖

Java:

char c = '\u9416';
System.out.println(c);  // Output: 鐖

JSON:

{"text": "\u9416"}  // Value: 鐖

Python:

char = '\u9416'
print(char)  # Output: 鐖

Perl:

my $char = "\x{9416}";
print $char;  # Output: 鐖

PHP:

$char = "\x{9416}";
echo $char;  // Output: 鐖

Ruby:

char = "\u{9416}"
puts char  # Output: 鐖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009416";  /* Display: 鐖 */
}

HTML Decimal:

<p>HTML decimal: &#37910;</p>  <!-- Display: 鐖 -->

HTML Hexadecimal:

<p>HTML hex: &#x9416;</p>  <!-- Display: 鐖 -->

URL Encoding:

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

Encodings

MD5:

a3c042710183a22ab4ce413eb6f7c1fb

SHA1:

1312f7f6df4a6a7c708e56384361ab2c258ee550

Base64:

6ZCW