Unicode Finder

"金" U+91D1(CJK UNIFIED IDEOGRAPH-91D1)

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

Programming

C
\u91D1
JavaScript
\u91D1
Java
\u91D1
Json
\u91D1
Python
\u91D1
Perl
\x{91D1}
PHP
\x{91D1}
Ruby
\u{91D1}
Rust
\u{91D1}
Go
\u91D1

Web

CSS
\0091D1
HtmlDecimal
金
HtmlHexadecimal
金
Url
%E9%87%91

Code

MD5
9c41898568fd50d0ed8b84a9842ef616
Sha1
b59df8c44a275e9a91bb76203330bf1e311fc56e
Base64
6YeR

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u91D1';
console.log(char);  // Output: 金

Java:

char c = '\u91D1';
System.out.println(c);  // Output: 金

JSON:

{"text": "\u91D1"}  // Value: 金

Python:

char = '\u91D1'
print(char)  # Output: 金

Perl:

my $char = "\x{91D1}";
print $char;  # Output: 金

PHP:

$char = "\x{91D1}";
echo $char;  // Output: 金

Ruby:

char = "\u{91D1}"
puts char  # Output: 金

Rust:

let c = '\u{91D1}';
println!("{}", c);  // Output: 金

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0091D1";  /* Display: 金 */
}

HTML Decimal:

<p>HTML decimal: &#37329;</p>  <!-- Display: 金 -->

HTML Hexadecimal:

<p>HTML hex: &#x91D1;</p>  <!-- Display: 金 -->

URL Encoding:

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

Encodings

MD5:

9c41898568fd50d0ed8b84a9842ef616

SHA1:

b59df8c44a275e9a91bb76203330bf1e311fc56e

Base64:

6YeR