Unicode Finder

"释" U+91CA(CJK UNIFIED IDEOGRAPH-91CA)

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

Programming

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

Web

CSS
\0091CA
HtmlDecimal
释
HtmlHexadecimal
释
Url
%E9%87%8A

Code

MD5
aa86031c19b2922a103f1609c173520a
Sha1
22d488f31168e70f995187fcaa5f919a8f0620b8
Base64
6YeK

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u91CA';
console.log(char);  // Output: 释

Java:

char c = '\u91CA';
System.out.println(c);  // Output: 释

JSON:

{"text": "\u91CA"}  // Value: 释

Python:

char = '\u91CA'
print(char)  # Output: 释

Perl:

my $char = "\x{91CA}";
print $char;  # Output: 释

PHP:

$char = "\x{91CA}";
echo $char;  // Output: 释

Ruby:

char = "\u{91CA}"
puts char  # Output: 释

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37322;</p>  <!-- Display: 释 -->

HTML Hexadecimal:

<p>HTML hex: &#x91CA;</p>  <!-- Display: 释 -->

URL Encoding:

// 释 URL encoding
https://unicodefinder.com/search.php?query=%E9%87%8A

Encodings

MD5:

aa86031c19b2922a103f1609c173520a

SHA1:

22d488f31168e70f995187fcaa5f919a8f0620b8

Base64:

6YeK