Unicode Finder

"終" U+7D42(CJK UNIFIED IDEOGRAPH-7D42)

U+7D42
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-7D42

Programming

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

Web

CSS
\007D42
HtmlDecimal
終
HtmlHexadecimal
終
Url
%E7%B5%82

Code

MD5
2fc1683be92dd9ff7fdd819e5548936d
Sha1
339782a432384239b49d531b231fc3de5fd0fd3b
Base64
57WC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7D42';
console.log(char);  // Output: 終

Java:

char c = '\u7D42';
System.out.println(c);  // Output: 終

JSON:

{"text": "\u7D42"}  // Value: 終

Python:

char = '\u7D42'
print(char)  # Output: 終

Perl:

my $char = "\x{7D42}";
print $char;  # Output: 終

PHP:

$char = "\x{7D42}";
echo $char;  // Output: 終

Ruby:

char = "\u{7D42}"
puts char  # Output: 終

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32066;</p>  <!-- Display: 終 -->

HTML Hexadecimal:

<p>HTML hex: &#x7D42;</p>  <!-- Display: 終 -->

URL Encoding:

// 終 URL encoding
https://unicodefinder.com/search.php?query=%E7%B5%82

Encodings

MD5:

2fc1683be92dd9ff7fdd819e5548936d

SHA1:

339782a432384239b49d531b231fc3de5fd0fd3b

Base64:

57WC