Unicode Finder

"鑇" U+9447(CJK UNIFIED IDEOGRAPH-9447)

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

Programming

C
\u9447
JavaScript
\u9447
Java
\u9447
Json
\u9447
Python
\u9447
Perl
\x{9447}
PHP
\x{9447}
Ruby
\u{9447}
Rust
\u{9447}
Go
\u9447

Web

CSS
\009447
HtmlDecimal
鑇
HtmlHexadecimal
鑇
Url
%E9%91%87

Code

MD5
adcef2632c3664157ab7fbaf038d0987
Sha1
d39f05b593189a1d88fdf527345a16d587dddbfb
Base64
6ZGH

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9447';
console.log(char);  // Output: 鑇

Java:

char c = '\u9447';
System.out.println(c);  // Output: 鑇

JSON:

{"text": "\u9447"}  // Value: 鑇

Python:

char = '\u9447'
print(char)  # Output: 鑇

Perl:

my $char = "\x{9447}";
print $char;  # Output: 鑇

PHP:

$char = "\x{9447}";
echo $char;  // Output: 鑇

Ruby:

char = "\u{9447}"
puts char  # Output: 鑇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009447";  /* Display: 鑇 */
}

HTML Decimal:

<p>HTML decimal: &#37959;</p>  <!-- Display: 鑇 -->

HTML Hexadecimal:

<p>HTML hex: &#x9447;</p>  <!-- Display: 鑇 -->

URL Encoding:

// 鑇 URL encoding
https://unicodefinder.com/search.php?query=%E9%91%87

Encodings

MD5:

adcef2632c3664157ab7fbaf038d0987

SHA1:

d39f05b593189a1d88fdf527345a16d587dddbfb

Base64:

6ZGH