Unicode Finder

"釄" U+91C4(CJK UNIFIED IDEOGRAPH-91C4)

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

Programming

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

Web

CSS
\0091C4
HtmlDecimal
釄
HtmlHexadecimal
釄
Url
%E9%87%84

Code

MD5
c8dff1c602ed00ff4f834e70ab2b34e6
Sha1
fda210bec3a50a8b38721647174e0793cf8a702f
Base64
6YeE

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u91C4';
console.log(char);  // Output: 釄

Java:

char c = '\u91C4';
System.out.println(c);  // Output: 釄

JSON:

{"text": "\u91C4"}  // Value: 釄

Python:

char = '\u91C4'
print(char)  # Output: 釄

Perl:

my $char = "\x{91C4}";
print $char;  # Output: 釄

PHP:

$char = "\x{91C4}";
echo $char;  // Output: 釄

Ruby:

char = "\u{91C4}"
puts char  # Output: 釄

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37316;</p>  <!-- Display: 釄 -->

HTML Hexadecimal:

<p>HTML hex: &#x91C4;</p>  <!-- Display: 釄 -->

URL Encoding:

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

Encodings

MD5:

c8dff1c602ed00ff4f834e70ab2b34e6

SHA1:

fda210bec3a50a8b38721647174e0793cf8a702f

Base64:

6YeE