Unicode Finder

"釗" U+91D7(CJK UNIFIED IDEOGRAPH-91D7)

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

Programming

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

Web

CSS
\0091D7
HtmlDecimal
釗
HtmlHexadecimal
釗
Url
%E9%87%97

Code

MD5
c8440a18ebde74b31ad1ab6618266ec7
Sha1
3cfcd15ab19c1dbe5e29cc4e5c1fc556d537ea45
Base64
6YeX

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u91D7';
console.log(char);  // Output: 釗

Java:

char c = '\u91D7';
System.out.println(c);  // Output: 釗

JSON:

{"text": "\u91D7"}  // Value: 釗

Python:

char = '\u91D7'
print(char)  # Output: 釗

Perl:

my $char = "\x{91D7}";
print $char;  # Output: 釗

PHP:

$char = "\x{91D7}";
echo $char;  // Output: 釗

Ruby:

char = "\u{91D7}"
puts char  # Output: 釗

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37335;</p>  <!-- Display: 釗 -->

HTML Hexadecimal:

<p>HTML hex: &#x91D7;</p>  <!-- Display: 釗 -->

URL Encoding:

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

Encodings

MD5:

c8440a18ebde74b31ad1ab6618266ec7

SHA1:

3cfcd15ab19c1dbe5e29cc4e5c1fc556d537ea45

Base64:

6YeX