Unicode Finder

"緼" U+7DFC(CJK UNIFIED IDEOGRAPH-7DFC)

U+7DFC
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-7DFC

Programming

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

Web

CSS
\007DFC
HtmlDecimal
緼
HtmlHexadecimal
緼
Url
%E7%B7%BC

Code

MD5
5d97695db1535fea6bb7ca4834bc90c5
Sha1
81d39e5e72bea44bb1178bc4732565c316595961
Base64
57e8

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7DFC';
console.log(char);  // Output: 緼

Java:

char c = '\u7DFC';
System.out.println(c);  // Output: 緼

JSON:

{"text": "\u7DFC"}  // Value: 緼

Python:

char = '\u7DFC'
print(char)  # Output: 緼

Perl:

my $char = "\x{7DFC}";
print $char;  # Output: 緼

PHP:

$char = "\x{7DFC}";
echo $char;  // Output: 緼

Ruby:

char = "\u{7DFC}"
puts char  # Output: 緼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32252;</p>  <!-- Display: 緼 -->

HTML Hexadecimal:

<p>HTML hex: &#x7DFC;</p>  <!-- Display: 緼 -->

URL Encoding:

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

Encodings

MD5:

5d97695db1535fea6bb7ca4834bc90c5

SHA1:

81d39e5e72bea44bb1178bc4732565c316595961

Base64:

57e8