Unicode Finder

"釁" U+91C1(CJK UNIFIED IDEOGRAPH-91C1)

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

Programming

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

Web

CSS
\0091C1
HtmlDecimal
釁
HtmlHexadecimal
釁
Url
%E9%87%81

Code

MD5
b166c53bae33657a5b58613a88355943
Sha1
d4b2d98254600150541640b570886cf9e60bfa95
Base64
6YeB

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u91C1';
console.log(char);  // Output: 釁

Java:

char c = '\u91C1';
System.out.println(c);  // Output: 釁

JSON:

{"text": "\u91C1"}  // Value: 釁

Python:

char = '\u91C1'
print(char)  # Output: 釁

Perl:

my $char = "\x{91C1}";
print $char;  # Output: 釁

PHP:

$char = "\x{91C1}";
echo $char;  // Output: 釁

Ruby:

char = "\u{91C1}"
puts char  # Output: 釁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37313;</p>  <!-- Display: 釁 -->

HTML Hexadecimal:

<p>HTML hex: &#x91C1;</p>  <!-- Display: 釁 -->

URL Encoding:

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

Encodings

MD5:

b166c53bae33657a5b58613a88355943

SHA1:

d4b2d98254600150541640b570886cf9e60bfa95

Base64:

6YeB