Unicode Finder

"釅" U+91C5(CJK UNIFIED IDEOGRAPH-91C5)

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

Programming

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

Web

CSS
\0091C5
HtmlDecimal
釅
HtmlHexadecimal
釅
Url
%E9%87%85

Code

MD5
aae71b2eff3ecf1aae32560a5dad2886
Sha1
7f6e76ffb60326806970ffc7c86831b8264eeeb2
Base64
6YeF

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u91C5';
console.log(char);  // Output: 釅

Java:

char c = '\u91C5';
System.out.println(c);  // Output: 釅

JSON:

{"text": "\u91C5"}  // Value: 釅

Python:

char = '\u91C5'
print(char)  # Output: 釅

Perl:

my $char = "\x{91C5}";
print $char;  # Output: 釅

PHP:

$char = "\x{91C5}";
echo $char;  // Output: 釅

Ruby:

char = "\u{91C5}"
puts char  # Output: 釅

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37317;</p>  <!-- Display: 釅 -->

HTML Hexadecimal:

<p>HTML hex: &#x91C5;</p>  <!-- Display: 釅 -->

URL Encoding:

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

Encodings

MD5:

aae71b2eff3ecf1aae32560a5dad2886

SHA1:

7f6e76ffb60326806970ffc7c86831b8264eeeb2

Base64:

6YeF