Unicode Finder

"釟" U+91DF(CJK UNIFIED IDEOGRAPH-91DF)

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

Programming

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

Web

CSS
\0091DF
HtmlDecimal
釟
HtmlHexadecimal
釟
Url
%E9%87%9F

Code

MD5
349410fa2533e8b5c0738ffd10e221bc
Sha1
618057e71d5a649b220d244a94198cffad1ac8af
Base64
6Yef

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u91DF';
console.log(char);  // Output: 釟

Java:

char c = '\u91DF';
System.out.println(c);  // Output: 釟

JSON:

{"text": "\u91DF"}  // Value: 釟

Python:

char = '\u91DF'
print(char)  # Output: 釟

Perl:

my $char = "\x{91DF}";
print $char;  # Output: 釟

PHP:

$char = "\x{91DF}";
echo $char;  // Output: 釟

Ruby:

char = "\u{91DF}"
puts char  # Output: 釟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37343;</p>  <!-- Display: 釟 -->

HTML Hexadecimal:

<p>HTML hex: &#x91DF;</p>  <!-- Display: 釟 -->

URL Encoding:

// 釟 URL encoding
https://unicodefinder.com/search.php?query=%E9%87%9F

Encodings

MD5:

349410fa2533e8b5c0738ffd10e221bc

SHA1:

618057e71d5a649b220d244a94198cffad1ac8af

Base64:

6Yef