Unicode Finder

"珙" U+73D9(CJK UNIFIED IDEOGRAPH-73D9)

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

Programming

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

Web

CSS
\0073D9
HtmlDecimal
珙
HtmlHexadecimal
珙
Url
%E7%8F%99

Code

MD5
2a1123e665cef864f6276d81fae1d87c
Sha1
da3b8af90cf9bed9fc79e6d14007d82fc5889194
Base64
54+Z

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u73D9';
console.log(char);  // Output: 珙

Java:

char c = '\u73D9';
System.out.println(c);  // Output: 珙

JSON:

{"text": "\u73D9"}  // Value: 珙

Python:

char = '\u73D9'
print(char)  # Output: 珙

Perl:

my $char = "\x{73D9}";
print $char;  # Output: 珙

PHP:

$char = "\x{73D9}";
echo $char;  // Output: 珙

Ruby:

char = "\u{73D9}"
puts char  # Output: 珙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29657;</p>  <!-- Display: 珙 -->

HTML Hexadecimal:

<p>HTML hex: &#x73D9;</p>  <!-- Display: 珙 -->

URL Encoding:

// 珙 URL encoding
https://unicodefinder.com/search.php?query=%E7%8F%99

Encodings

MD5:

2a1123e665cef864f6276d81fae1d87c

SHA1:

da3b8af90cf9bed9fc79e6d14007d82fc5889194

Base64:

54+Z