Unicode Finder

"緧" U+7DE7(CJK UNIFIED IDEOGRAPH-7DE7)

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

Programming

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

Web

CSS
\007DE7
HtmlDecimal
緧
HtmlHexadecimal
緧
Url
%E7%B7%A7

Code

MD5
cd67a13e5b47342d9581eff39ab8eed5
Sha1
9e32794273107771f6c0480219cbd8b8e379dacf
Base64
57en

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7DE7';
console.log(char);  // Output: 緧

Java:

char c = '\u7DE7';
System.out.println(c);  // Output: 緧

JSON:

{"text": "\u7DE7"}  // Value: 緧

Python:

char = '\u7DE7'
print(char)  # Output: 緧

Perl:

my $char = "\x{7DE7}";
print $char;  # Output: 緧

PHP:

$char = "\x{7DE7}";
echo $char;  // Output: 緧

Ruby:

char = "\u{7DE7}"
puts char  # Output: 緧

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32231;</p>  <!-- Display: 緧 -->

HTML Hexadecimal:

<p>HTML hex: &#x7DE7;</p>  <!-- Display: 緧 -->

URL Encoding:

// 緧 URL encoding
https://unicodefinder.com/search.php?query=%E7%B7%A7

Encodings

MD5:

cd67a13e5b47342d9581eff39ab8eed5

SHA1:

9e32794273107771f6c0480219cbd8b8e379dacf

Base64:

57en