Unicode Finder

"珷" U+73F7(CJK UNIFIED IDEOGRAPH-73F7)

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

Programming

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

Web

CSS
\0073F7
HtmlDecimal
珷
HtmlHexadecimal
珷
Url
%E7%8F%B7

Code

MD5
209c1b1dae2afcc1bcd3d96250f86cf1
Sha1
9f23b4962e25e726395511d78b08d8086848c97b
Base64
54+3

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u73F7';
console.log(char);  // Output: 珷

Java:

char c = '\u73F7';
System.out.println(c);  // Output: 珷

JSON:

{"text": "\u73F7"}  // Value: 珷

Python:

char = '\u73F7'
print(char)  # Output: 珷

Perl:

my $char = "\x{73F7}";
print $char;  # Output: 珷

PHP:

$char = "\x{73F7}";
echo $char;  // Output: 珷

Ruby:

char = "\u{73F7}"
puts char  # Output: 珷

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29687;</p>  <!-- Display: 珷 -->

HTML Hexadecimal:

<p>HTML hex: &#x73F7;</p>  <!-- Display: 珷 -->

URL Encoding:

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

Encodings

MD5:

209c1b1dae2afcc1bcd3d96250f86cf1

SHA1:

9f23b4962e25e726395511d78b08d8086848c97b

Base64:

54+3