Unicode Finder

"缍" U+7F0D(CJK UNIFIED IDEOGRAPH-7F0D)

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

Programming

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

Web

CSS
\007F0D
HtmlDecimal
缍
HtmlHexadecimal
缍
Url
%E7%BC%8D

Code

MD5
60ab6a718287d9b9b7969f8040a9b908
Sha1
dcc2f2846b72177651dc017887f22e078658a8ca
Base64
57yN

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7F0D';
console.log(char);  // Output: 缍

Java:

char c = '\u7F0D';
System.out.println(c);  // Output: 缍

JSON:

{"text": "\u7F0D"}  // Value: 缍

Python:

char = '\u7F0D'
print(char)  # Output: 缍

Perl:

my $char = "\x{7F0D}";
print $char;  # Output: 缍

PHP:

$char = "\x{7F0D}";
echo $char;  // Output: 缍

Ruby:

char = "\u{7F0D}"
puts char  # Output: 缍

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32525;</p>  <!-- Display: 缍 -->

HTML Hexadecimal:

<p>HTML hex: &#x7F0D;</p>  <!-- Display: 缍 -->

URL Encoding:

// 缍 URL encoding
https://unicodefinder.com/search.php?query=%E7%BC%8D

Encodings

MD5:

60ab6a718287d9b9b7969f8040a9b908

SHA1:

dcc2f2846b72177651dc017887f22e078658a8ca

Base64:

57yN