Unicode Finder

"螭" U+87AD(CJK UNIFIED IDEOGRAPH-87AD)

U+87AD
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-87AD

Programming

C
\u87AD
JavaScript
\u87AD
Java
\u87AD
Json
\u87AD
Python
\u87AD
Perl
\x{87AD}
PHP
\x{87AD}
Ruby
\u{87AD}
Rust
\u{87AD}
Go
\u87AD

Web

CSS
\0087AD
HtmlDecimal
螭
HtmlHexadecimal
螭
Url
%E8%9E%AD

Code

MD5
cd53bb559c1df10f42e45987eee1cdf1
Sha1
a3f3cd3b620e5784f777173a26b581f4d18e300f
Base64
6J6t

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u87AD';
console.log(char);  // Output: 螭

Java:

char c = '\u87AD';
System.out.println(c);  // Output: 螭

JSON:

{"text": "\u87AD"}  // Value: 螭

Python:

char = '\u87AD'
print(char)  # Output: 螭

Perl:

my $char = "\x{87AD}";
print $char;  # Output: 螭

PHP:

$char = "\x{87AD}";
echo $char;  // Output: 螭

Ruby:

char = "\u{87AD}"
puts char  # Output: 螭

Rust:

let c = '\u{87AD}';
println!("{}", c);  // Output: 螭

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0087AD";  /* Display: 螭 */
}

HTML Decimal:

<p>HTML decimal: &#34733;</p>  <!-- Display: 螭 -->

HTML Hexadecimal:

<p>HTML hex: &#x87AD;</p>  <!-- Display: 螭 -->

URL Encoding:

// 螭 URL encoding
https://unicodefinder.com/search.php?query=%E8%9E%AD

Encodings

MD5:

cd53bb559c1df10f42e45987eee1cdf1

SHA1:

a3f3cd3b620e5784f777173a26b581f4d18e300f

Base64:

6J6t