Unicode Finder

"粇" U+7C87(CJK UNIFIED IDEOGRAPH-7C87)

U+7C87
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-7C87

Programming

C
\u7C87
JavaScript
\u7C87
Java
\u7C87
Json
\u7C87
Python
\u7C87
Perl
\x{7C87}
PHP
\x{7C87}
Ruby
\u{7C87}
Rust
\u{7C87}
Go
\u7C87

Web

CSS
\007C87
HtmlDecimal
粇
HtmlHexadecimal
粇
Url
%E7%B2%87

Code

MD5
a026410f1d9e84601042561792b0d00f
Sha1
21d4027fe8eec0f14f4c1d3abe09d7b9c63d6485
Base64
57KH

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7C87';
console.log(char);  // Output: 粇

Java:

char c = '\u7C87';
System.out.println(c);  // Output: 粇

JSON:

{"text": "\u7C87"}  // Value: 粇

Python:

char = '\u7C87'
print(char)  # Output: 粇

Perl:

my $char = "\x{7C87}";
print $char;  # Output: 粇

PHP:

$char = "\x{7C87}";
echo $char;  // Output: 粇

Ruby:

char = "\u{7C87}"
puts char  # Output: 粇

Rust:

let c = '\u{7C87}';
println!("{}", c);  // Output: 粇

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007C87";  /* Display: 粇 */
}

HTML Decimal:

<p>HTML decimal: &#31879;</p>  <!-- Display: 粇 -->

HTML Hexadecimal:

<p>HTML hex: &#x7C87;</p>  <!-- Display: 粇 -->

URL Encoding:

// 粇 URL encoding
https://unicodefinder.com/search.php?query=%E7%B2%87

Encodings

MD5:

a026410f1d9e84601042561792b0d00f

SHA1:

21d4027fe8eec0f14f4c1d3abe09d7b9c63d6485

Base64:

57KH