Unicode Finder

"錅" U+9305(CJK UNIFIED IDEOGRAPH-9305)

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

Programming

C
\u9305
JavaScript
\u9305
Java
\u9305
Json
\u9305
Python
\u9305
Perl
\x{9305}
PHP
\x{9305}
Ruby
\u{9305}
Rust
\u{9305}
Go
\u9305

Web

CSS
\009305
HtmlDecimal
錅
HtmlHexadecimal
錅
Url
%E9%8C%85

Code

MD5
7d25cc3cf0be10fd14048d0da3370491
Sha1
09410a33b7da077dd96233a3ed91da58a4c88573
Base64
6YyF

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9305';
console.log(char);  // Output: 錅

Java:

char c = '\u9305';
System.out.println(c);  // Output: 錅

JSON:

{"text": "\u9305"}  // Value: 錅

Python:

char = '\u9305'
print(char)  # Output: 錅

Perl:

my $char = "\x{9305}";
print $char;  # Output: 錅

PHP:

$char = "\x{9305}";
echo $char;  // Output: 錅

Ruby:

char = "\u{9305}"
puts char  # Output: 錅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009305";  /* Display: 錅 */
}

HTML Decimal:

<p>HTML decimal: &#37637;</p>  <!-- Display: 錅 -->

HTML Hexadecimal:

<p>HTML hex: &#x9305;</p>  <!-- Display: 錅 -->

URL Encoding:

// 錅 URL encoding
https://unicodefinder.com/search.php?query=%E9%8C%85

Encodings

MD5:

7d25cc3cf0be10fd14048d0da3370491

SHA1:

09410a33b7da077dd96233a3ed91da58a4c88573

Base64:

6YyF