Unicode Finder

"篼" U+7BFC(CJK UNIFIED IDEOGRAPH-7BFC)

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

Programming

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

Web

CSS
\007BFC
HtmlDecimal
篼
HtmlHexadecimal
篼
Url
%E7%AF%BC

Code

MD5
01c25a598ce501e7c4c4ba97eafd3c18
Sha1
2f33d381bfaf54d2f2331342c5e84cea9e66fc3a
Base64
56+8

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7BFC';
console.log(char);  // Output: 篼

Java:

char c = '\u7BFC';
System.out.println(c);  // Output: 篼

JSON:

{"text": "\u7BFC"}  // Value: 篼

Python:

char = '\u7BFC'
print(char)  # Output: 篼

Perl:

my $char = "\x{7BFC}";
print $char;  # Output: 篼

PHP:

$char = "\x{7BFC}";
echo $char;  // Output: 篼

Ruby:

char = "\u{7BFC}"
puts char  # Output: 篼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31740;</p>  <!-- Display: 篼 -->

HTML Hexadecimal:

<p>HTML hex: &#x7BFC;</p>  <!-- Display: 篼 -->

URL Encoding:

// 篼 URL encoding
https://unicodefinder.com/search.php?query=%E7%AF%BC

Encodings

MD5:

01c25a598ce501e7c4c4ba97eafd3c18

SHA1:

2f33d381bfaf54d2f2331342c5e84cea9e66fc3a

Base64:

56+8