Unicode Finder

"緭" U+7DED(CJK UNIFIED IDEOGRAPH-7DED)

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

Programming

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

Web

CSS
\007DED
HtmlDecimal
緭
HtmlHexadecimal
緭
Url
%E7%B7%AD

Code

MD5
c58508fe4b5d01c66c0cddb669f19b13
Sha1
b08a8d831ad89573fa6dc6d7c48f40cac41d74d9
Base64
57et

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7DED';
console.log(char);  // Output: 緭

Java:

char c = '\u7DED';
System.out.println(c);  // Output: 緭

JSON:

{"text": "\u7DED"}  // Value: 緭

Python:

char = '\u7DED'
print(char)  # Output: 緭

Perl:

my $char = "\x{7DED}";
print $char;  # Output: 緭

PHP:

$char = "\x{7DED}";
echo $char;  // Output: 緭

Ruby:

char = "\u{7DED}"
puts char  # Output: 緭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32237;</p>  <!-- Display: 緭 -->

HTML Hexadecimal:

<p>HTML hex: &#x7DED;</p>  <!-- Display: 緭 -->

URL Encoding:

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

Encodings

MD5:

c58508fe4b5d01c66c0cddb669f19b13

SHA1:

b08a8d831ad89573fa6dc6d7c48f40cac41d74d9

Base64:

57et