Unicode Finder

"璑" U+7491(CJK UNIFIED IDEOGRAPH-7491)

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

Programming

C
\u7491
JavaScript
\u7491
Java
\u7491
Json
\u7491
Python
\u7491
Perl
\x{7491}
PHP
\x{7491}
Ruby
\u{7491}
Rust
\u{7491}
Go
\u7491

Web

CSS
\007491
HtmlDecimal
璑
HtmlHexadecimal
璑
Url
%E7%92%91

Code

MD5
abaf8b189c8c1be4ebd17a45d9233127
Sha1
c3163d016dfabdc2e1fd96d6a449bdbcf7aa9ac4
Base64
55KR

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7491';
console.log(char);  // Output: 璑

Java:

char c = '\u7491';
System.out.println(c);  // Output: 璑

JSON:

{"text": "\u7491"}  // Value: 璑

Python:

char = '\u7491'
print(char)  # Output: 璑

Perl:

my $char = "\x{7491}";
print $char;  # Output: 璑

PHP:

$char = "\x{7491}";
echo $char;  // Output: 璑

Ruby:

char = "\u{7491}"
puts char  # Output: 璑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007491";  /* Display: 璑 */
}

HTML Decimal:

<p>HTML decimal: &#29841;</p>  <!-- Display: 璑 -->

HTML Hexadecimal:

<p>HTML hex: &#x7491;</p>  <!-- Display: 璑 -->

URL Encoding:

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

Encodings

MD5:

abaf8b189c8c1be4ebd17a45d9233127

SHA1:

c3163d016dfabdc2e1fd96d6a449bdbcf7aa9ac4

Base64:

55KR