Unicode Finder

"珜" U+73DC(CJK UNIFIED IDEOGRAPH-73DC)

U+73DC
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-73DC

Programming

C
\u73DC
JavaScript
\u73DC
Java
\u73DC
Json
\u73DC
Python
\u73DC
Perl
\x{73DC}
PHP
\x{73DC}
Ruby
\u{73DC}
Rust
\u{73DC}
Go
\u73DC

Web

CSS
\0073DC
HtmlDecimal
珜
HtmlHexadecimal
珜
Url
%E7%8F%9C

Code

MD5
8fc261fbcefd723cfd65b40d596ccbf8
Sha1
7d06ebae6ea0590d23f11418819d0cf9434391d2
Base64
54+c

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u73DC';
console.log(char);  // Output: 珜

Java:

char c = '\u73DC';
System.out.println(c);  // Output: 珜

JSON:

{"text": "\u73DC"}  // Value: 珜

Python:

char = '\u73DC'
print(char)  # Output: 珜

Perl:

my $char = "\x{73DC}";
print $char;  # Output: 珜

PHP:

$char = "\x{73DC}";
echo $char;  // Output: 珜

Ruby:

char = "\u{73DC}"
puts char  # Output: 珜

Rust:

let c = '\u{73DC}';
println!("{}", c);  // Output: 珜

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0073DC";  /* Display: 珜 */
}

HTML Decimal:

<p>HTML decimal: &#29660;</p>  <!-- Display: 珜 -->

HTML Hexadecimal:

<p>HTML hex: &#x73DC;</p>  <!-- Display: 珜 -->

URL Encoding:

// 珜 URL encoding
https://unicodefinder.com/search.php?query=%E7%8F%9C

Encodings

MD5:

8fc261fbcefd723cfd65b40d596ccbf8

SHA1:

7d06ebae6ea0590d23f11418819d0cf9434391d2

Base64:

54+c