Unicode Finder

"缪" U+7F2A(CJK UNIFIED IDEOGRAPH-7F2A)

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

Programming

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

Web

CSS
\007F2A
HtmlDecimal
缪
HtmlHexadecimal
缪
Url
%E7%BC%AA

Code

MD5
83588ecd8629cd6d87f3482d3fc978f5
Sha1
8d46bfef51ab6b1709f65ed35e624ca5a279f942
Base64
57yq

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7F2A';
console.log(char);  // Output: 缪

Java:

char c = '\u7F2A';
System.out.println(c);  // Output: 缪

JSON:

{"text": "\u7F2A"}  // Value: 缪

Python:

char = '\u7F2A'
print(char)  # Output: 缪

Perl:

my $char = "\x{7F2A}";
print $char;  # Output: 缪

PHP:

$char = "\x{7F2A}";
echo $char;  // Output: 缪

Ruby:

char = "\u{7F2A}"
puts char  # Output: 缪

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32554;</p>  <!-- Display: 缪 -->

HTML Hexadecimal:

<p>HTML hex: &#x7F2A;</p>  <!-- Display: 缪 -->

URL Encoding:

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

Encodings

MD5:

83588ecd8629cd6d87f3482d3fc978f5

SHA1:

8d46bfef51ab6b1709f65ed35e624ca5a279f942

Base64:

57yq