Unicode Finder

"篅" U+7BC5(CJK UNIFIED IDEOGRAPH-7BC5)

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

Programming

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

Web

CSS
\007BC5
HtmlDecimal
篅
HtmlHexadecimal
篅
Url
%E7%AF%85

Code

MD5
06cf637ccf6ecf6ef23e7caa0851fde3
Sha1
a0eff77e760dc0c5f31265569db40310cd29b319
Base64
56+F

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7BC5';
console.log(char);  // Output: 篅

Java:

char c = '\u7BC5';
System.out.println(c);  // Output: 篅

JSON:

{"text": "\u7BC5"}  // Value: 篅

Python:

char = '\u7BC5'
print(char)  # Output: 篅

Perl:

my $char = "\x{7BC5}";
print $char;  # Output: 篅

PHP:

$char = "\x{7BC5}";
echo $char;  // Output: 篅

Ruby:

char = "\u{7BC5}"
puts char  # Output: 篅

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31685;</p>  <!-- Display: 篅 -->

HTML Hexadecimal:

<p>HTML hex: &#x7BC5;</p>  <!-- Display: 篅 -->

URL Encoding:

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

Encodings

MD5:

06cf637ccf6ecf6ef23e7caa0851fde3

SHA1:

a0eff77e760dc0c5f31265569db40310cd29b319

Base64:

56+F