Unicode Finder

"絆" U+7D46(CJK UNIFIED IDEOGRAPH-7D46)

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

Programming

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

Web

CSS
\007D46
HtmlDecimal
絆
HtmlHexadecimal
絆
Url
%E7%B5%86

Code

MD5
e4c2ccd8c862f75070af24ab28668032
Sha1
f1249d5a272b05f67792eb33c53028f5e21777ac
Base64
57WG

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7D46';
console.log(char);  // Output: 絆

Java:

char c = '\u7D46';
System.out.println(c);  // Output: 絆

JSON:

{"text": "\u7D46"}  // Value: 絆

Python:

char = '\u7D46'
print(char)  # Output: 絆

Perl:

my $char = "\x{7D46}";
print $char;  # Output: 絆

PHP:

$char = "\x{7D46}";
echo $char;  // Output: 絆

Ruby:

char = "\u{7D46}"
puts char  # Output: 絆

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32070;</p>  <!-- Display: 絆 -->

HTML Hexadecimal:

<p>HTML hex: &#x7D46;</p>  <!-- Display: 絆 -->

URL Encoding:

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

Encodings

MD5:

e4c2ccd8c862f75070af24ab28668032

SHA1:

f1249d5a272b05f67792eb33c53028f5e21777ac

Base64:

57WG