Unicode Finder

"續" U+7E8C(CJK UNIFIED IDEOGRAPH-7E8C)

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

Programming

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

Web

CSS
\007E8C
HtmlDecimal
續
HtmlHexadecimal
續
Url
%E7%BA%8C

Code

MD5
0023847470ca2e65e246b851dcb99aca
Sha1
80be156f98a49426193e29de59cb7ed6fb827327
Base64
57qM

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7E8C';
console.log(char);  // Output: 續

Java:

char c = '\u7E8C';
System.out.println(c);  // Output: 續

JSON:

{"text": "\u7E8C"}  // Value: 續

Python:

char = '\u7E8C'
print(char)  # Output: 續

Perl:

my $char = "\x{7E8C}";
print $char;  # Output: 續

PHP:

$char = "\x{7E8C}";
echo $char;  // Output: 續

Ruby:

char = "\u{7E8C}"
puts char  # Output: 續

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32396;</p>  <!-- Display: 續 -->

HTML Hexadecimal:

<p>HTML hex: &#x7E8C;</p>  <!-- Display: 續 -->

URL Encoding:

// 續 URL encoding
https://unicodefinder.com/search.php?query=%E7%BA%8C

Encodings

MD5:

0023847470ca2e65e246b851dcb99aca

SHA1:

80be156f98a49426193e29de59cb7ed6fb827327

Base64:

57qM