Unicode Finder

"缂" U+7F02(CJK UNIFIED IDEOGRAPH-7F02)

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

Programming

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

Web

CSS
\007F02
HtmlDecimal
缂
HtmlHexadecimal
缂
Url
%E7%BC%82

Code

MD5
5cbd44503d2c0e8954af8d9a95fcc766
Sha1
b8239bde54147fb5ba23228e0719c3424b7f2932
Base64
57yC

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7F02';
console.log(char);  // Output: 缂

Java:

char c = '\u7F02';
System.out.println(c);  // Output: 缂

JSON:

{"text": "\u7F02"}  // Value: 缂

Python:

char = '\u7F02'
print(char)  # Output: 缂

Perl:

my $char = "\x{7F02}";
print $char;  # Output: 缂

PHP:

$char = "\x{7F02}";
echo $char;  // Output: 缂

Ruby:

char = "\u{7F02}"
puts char  # Output: 缂

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32514;</p>  <!-- Display: 缂 -->

HTML Hexadecimal:

<p>HTML hex: &#x7F02;</p>  <!-- Display: 缂 -->

URL Encoding:

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

Encodings

MD5:

5cbd44503d2c0e8954af8d9a95fcc766

SHA1:

b8239bde54147fb5ba23228e0719c3424b7f2932

Base64:

57yC