Unicode Finder

"継" U+7D99(CJK UNIFIED IDEOGRAPH-7D99)

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

Programming

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

Web

CSS
\007D99
HtmlDecimal
継
HtmlHexadecimal
継
Url
%E7%B6%99

Code

MD5
d0d90c578588c6fd9c997349d00eede0
Sha1
221da61ce381d5d37d38a7064f536950041b0072
Base64
57aZ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7D99';
console.log(char);  // Output: 継

Java:

char c = '\u7D99';
System.out.println(c);  // Output: 継

JSON:

{"text": "\u7D99"}  // Value: 継

Python:

char = '\u7D99'
print(char)  # Output: 継

Perl:

my $char = "\x{7D99}";
print $char;  # Output: 継

PHP:

$char = "\x{7D99}";
echo $char;  // Output: 継

Ruby:

char = "\u{7D99}"
puts char  # Output: 継

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32153;</p>  <!-- Display: 継 -->

HTML Hexadecimal:

<p>HTML hex: &#x7D99;</p>  <!-- Display: 継 -->

URL Encoding:

// 継 URL encoding
https://unicodefinder.com/search.php?query=%E7%B6%99

Encodings

MD5:

d0d90c578588c6fd9c997349d00eede0

SHA1:

221da61ce381d5d37d38a7064f536950041b0072

Base64:

57aZ