Unicode Finder

"篎" U+7BCE(CJK UNIFIED IDEOGRAPH-7BCE)

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

Programming

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

Web

CSS
\007BCE
HtmlDecimal
篎
HtmlHexadecimal
篎
Url
%E7%AF%8E

Code

MD5
ce8dc93255f175bc9783d85ef61b33a2
Sha1
cfecc2a4357ffc0b9a186e89d3ba9178aeb227da
Base64
56+O

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7BCE';
console.log(char);  // Output: 篎

Java:

char c = '\u7BCE';
System.out.println(c);  // Output: 篎

JSON:

{"text": "\u7BCE"}  // Value: 篎

Python:

char = '\u7BCE'
print(char)  # Output: 篎

Perl:

my $char = "\x{7BCE}";
print $char;  # Output: 篎

PHP:

$char = "\x{7BCE}";
echo $char;  // Output: 篎

Ruby:

char = "\u{7BCE}"
puts char  # Output: 篎

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31694;</p>  <!-- Display: 篎 -->

HTML Hexadecimal:

<p>HTML hex: &#x7BCE;</p>  <!-- Display: 篎 -->

URL Encoding:

// 篎 URL encoding
https://unicodefinder.com/search.php?query=%E7%AF%8E

Encodings

MD5:

ce8dc93255f175bc9783d85ef61b33a2

SHA1:

cfecc2a4357ffc0b9a186e89d3ba9178aeb227da

Base64:

56+O