Unicode Finder

"缀" U+7F00(CJK UNIFIED IDEOGRAPH-7F00)

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

Programming

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

Web

CSS
\007F00
HtmlDecimal
缀
HtmlHexadecimal
缀
Url
%E7%BC%80

Code

MD5
0c2b2bc75df4deea9bd66ccf755b28d1
Sha1
83d2f4b15ad6ea3f16555ccc9f56bacd78c43cd3
Base64
57yA

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7F00';
console.log(char);  // Output: 缀

Java:

char c = '\u7F00';
System.out.println(c);  // Output: 缀

JSON:

{"text": "\u7F00"}  // Value: 缀

Python:

char = '\u7F00'
print(char)  # Output: 缀

Perl:

my $char = "\x{7F00}";
print $char;  # Output: 缀

PHP:

$char = "\x{7F00}";
echo $char;  // Output: 缀

Ruby:

char = "\u{7F00}"
puts char  # Output: 缀

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32512;</p>  <!-- Display: 缀 -->

HTML Hexadecimal:

<p>HTML hex: &#x7F00;</p>  <!-- Display: 缀 -->

URL Encoding:

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

Encodings

MD5:

0c2b2bc75df4deea9bd66ccf755b28d1

SHA1:

83d2f4b15ad6ea3f16555ccc9f56bacd78c43cd3

Base64:

57yA