Unicode Finder

"続" U+7D9A(CJK UNIFIED IDEOGRAPH-7D9A)

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

Programming

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

Web

CSS
\007D9A
HtmlDecimal
続
HtmlHexadecimal
続
Url
%E7%B6%9A

Code

MD5
7274eb0f3c5f6920093d96724aad5be9
Sha1
e5921f57d541820f082d425d13a37ae1bc2afce1
Base64
57aa

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7D9A';
console.log(char);  // Output: 続

Java:

char c = '\u7D9A';
System.out.println(c);  // Output: 続

JSON:

{"text": "\u7D9A"}  // Value: 続

Python:

char = '\u7D9A'
print(char)  # Output: 続

Perl:

my $char = "\x{7D9A}";
print $char;  # Output: 続

PHP:

$char = "\x{7D9A}";
echo $char;  // Output: 続

Ruby:

char = "\u{7D9A}"
puts char  # Output: 続

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32154;</p>  <!-- Display: 続 -->

HTML Hexadecimal:

<p>HTML hex: &#x7D9A;</p>  <!-- Display: 続 -->

URL Encoding:

// 続 URL encoding
https://unicodefinder.com/search.php?query=%E7%B6%9A

Encodings

MD5:

7274eb0f3c5f6920093d96724aad5be9

SHA1:

e5921f57d541820f082d425d13a37ae1bc2afce1

Base64:

57aa