Unicode Finder

"钐" U+9490(CJK UNIFIED IDEOGRAPH-9490)

U+9490
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-9490

Programming

C
\u9490
JavaScript
\u9490
Java
\u9490
Json
\u9490
Python
\u9490
Perl
\x{9490}
PHP
\x{9490}
Ruby
\u{9490}
Rust
\u{9490}
Go
\u9490

Web

CSS
\009490
HtmlDecimal
钐
HtmlHexadecimal
钐
Url
%E9%92%90

Code

MD5
9d78e8bdcd64e22e2a74079adb73c01f
Sha1
4f094186daf563914731af64149d4b2c22026383
Base64
6ZKQ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9490';
console.log(char);  // Output: 钐

Java:

char c = '\u9490';
System.out.println(c);  // Output: 钐

JSON:

{"text": "\u9490"}  // Value: 钐

Python:

char = '\u9490'
print(char)  # Output: 钐

Perl:

my $char = "\x{9490}";
print $char;  # Output: 钐

PHP:

$char = "\x{9490}";
echo $char;  // Output: 钐

Ruby:

char = "\u{9490}"
puts char  # Output: 钐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009490";  /* Display: 钐 */
}

HTML Decimal:

<p>HTML decimal: &#38032;</p>  <!-- Display: 钐 -->

HTML Hexadecimal:

<p>HTML hex: &#x9490;</p>  <!-- Display: 钐 -->

URL Encoding:

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

Encodings

MD5:

9d78e8bdcd64e22e2a74079adb73c01f

SHA1:

4f094186daf563914731af64149d4b2c22026383

Base64:

6ZKQ