Unicode Finder

"緳" U+7DF3(CJK UNIFIED IDEOGRAPH-7DF3)

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

Programming

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

Web

CSS
\007DF3
HtmlDecimal
緳
HtmlHexadecimal
緳
Url
%E7%B7%B3

Code

MD5
40a7604fdf82f754ba0555bdb6422fe1
Sha1
f696965f11ef3cb9d57f940f437f91ee8fcd08d8
Base64
57ez

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7DF3';
console.log(char);  // Output: 緳

Java:

char c = '\u7DF3';
System.out.println(c);  // Output: 緳

JSON:

{"text": "\u7DF3"}  // Value: 緳

Python:

char = '\u7DF3'
print(char)  # Output: 緳

Perl:

my $char = "\x{7DF3}";
print $char;  # Output: 緳

PHP:

$char = "\x{7DF3}";
echo $char;  // Output: 緳

Ruby:

char = "\u{7DF3}"
puts char  # Output: 緳

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32243;</p>  <!-- Display: 緳 -->

HTML Hexadecimal:

<p>HTML hex: &#x7DF3;</p>  <!-- Display: 緳 -->

URL Encoding:

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

Encodings

MD5:

40a7604fdf82f754ba0555bdb6422fe1

SHA1:

f696965f11ef3cb9d57f940f437f91ee8fcd08d8

Base64:

57ez