Unicode Finder

"璀" U+7480(CJK UNIFIED IDEOGRAPH-7480)

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

Programming

C
\u7480
JavaScript
\u7480
Java
\u7480
Json
\u7480
Python
\u7480
Perl
\x{7480}
PHP
\x{7480}
Ruby
\u{7480}
Rust
\u{7480}
Go
\u7480

Web

CSS
\007480
HtmlDecimal
璀
HtmlHexadecimal
璀
Url
%E7%92%80

Code

MD5
3f45eb28f1df9ef48735742ddea4d5de
Sha1
243e583d4e6dd727e165a7c68a81a42a0f8be67b
Base64
55KA

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7480';
console.log(char);  // Output: 璀

Java:

char c = '\u7480';
System.out.println(c);  // Output: 璀

JSON:

{"text": "\u7480"}  // Value: 璀

Python:

char = '\u7480'
print(char)  # Output: 璀

Perl:

my $char = "\x{7480}";
print $char;  # Output: 璀

PHP:

$char = "\x{7480}";
echo $char;  // Output: 璀

Ruby:

char = "\u{7480}"
puts char  # Output: 璀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007480";  /* Display: 璀 */
}

HTML Decimal:

<p>HTML decimal: &#29824;</p>  <!-- Display: 璀 -->

HTML Hexadecimal:

<p>HTML hex: &#x7480;</p>  <!-- Display: 璀 -->

URL Encoding:

// 璀 URL encoding
https://unicodefinder.com/search.php?query=%E7%92%80

Encodings

MD5:

3f45eb28f1df9ef48735742ddea4d5de

SHA1:

243e583d4e6dd727e165a7c68a81a42a0f8be67b

Base64:

55KA