Unicode Finder

"瑳" U+7473(CJK UNIFIED IDEOGRAPH-7473)

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

Programming

C
\u7473
JavaScript
\u7473
Java
\u7473
Json
\u7473
Python
\u7473
Perl
\x{7473}
PHP
\x{7473}
Ruby
\u{7473}
Rust
\u{7473}
Go
\u7473

Web

CSS
\007473
HtmlDecimal
瑳
HtmlHexadecimal
瑳
Url
%E7%91%B3

Code

MD5
ffc82a0a3d87c332a4b23b31be9a4267
Sha1
88dc523b7086780b9834032d32d8b086918d51d4
Base64
55Gz

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7473';
console.log(char);  // Output: 瑳

Java:

char c = '\u7473';
System.out.println(c);  // Output: 瑳

JSON:

{"text": "\u7473"}  // Value: 瑳

Python:

char = '\u7473'
print(char)  # Output: 瑳

Perl:

my $char = "\x{7473}";
print $char;  # Output: 瑳

PHP:

$char = "\x{7473}";
echo $char;  // Output: 瑳

Ruby:

char = "\u{7473}"
puts char  # Output: 瑳

Rust:

let c = '\u{7473}';
println!("{}", c);  // Output: 瑳

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007473";  /* Display: 瑳 */
}

HTML Decimal:

<p>HTML decimal: &#29811;</p>  <!-- Display: 瑳 -->

HTML Hexadecimal:

<p>HTML hex: &#x7473;</p>  <!-- Display: 瑳 -->

URL Encoding:

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

Encodings

MD5:

ffc82a0a3d87c332a4b23b31be9a4267

SHA1:

88dc523b7086780b9834032d32d8b086918d51d4

Base64:

55Gz