Unicode Finder

"螴" U+87B4(CJK UNIFIED IDEOGRAPH-87B4)

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

Programming

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

Web

CSS
\0087B4
HtmlDecimal
螴
HtmlHexadecimal
螴
Url
%E8%9E%B4

Code

MD5
65fd36d358b6a19ee837aeb126ad3c85
Sha1
56b4766d4a75b1d6e5b1cca3845c0f528a646247
Base64
6J60

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u87B4';
console.log(char);  // Output: 螴

Java:

char c = '\u87B4';
System.out.println(c);  // Output: 螴

JSON:

{"text": "\u87B4"}  // Value: 螴

Python:

char = '\u87B4'
print(char)  # Output: 螴

Perl:

my $char = "\x{87B4}";
print $char;  # Output: 螴

PHP:

$char = "\x{87B4}";
echo $char;  // Output: 螴

Ruby:

char = "\u{87B4}"
puts char  # Output: 螴

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#34740;</p>  <!-- Display: 螴 -->

HTML Hexadecimal:

<p>HTML hex: &#x87B4;</p>  <!-- Display: 螴 -->

URL Encoding:

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

Encodings

MD5:

65fd36d358b6a19ee837aeb126ad3c85

SHA1:

56b4766d4a75b1d6e5b1cca3845c0f528a646247

Base64:

6J60