Unicode Finder

"璒" U+7492(CJK UNIFIED IDEOGRAPH-7492)

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

Programming

C
\u7492
JavaScript
\u7492
Java
\u7492
Json
\u7492
Python
\u7492
Perl
\x{7492}
PHP
\x{7492}
Ruby
\u{7492}
Rust
\u{7492}
Go
\u7492

Web

CSS
\007492
HtmlDecimal
璒
HtmlHexadecimal
璒
Url
%E7%92%92

Code

MD5
c54fc9c8cd2f713ae9867ec6cab64601
Sha1
5a888c1ad4d751ae3b0bd306fadb74cbd4aa9770
Base64
55KS

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7492';
console.log(char);  // Output: 璒

Java:

char c = '\u7492';
System.out.println(c);  // Output: 璒

JSON:

{"text": "\u7492"}  // Value: 璒

Python:

char = '\u7492'
print(char)  # Output: 璒

Perl:

my $char = "\x{7492}";
print $char;  # Output: 璒

PHP:

$char = "\x{7492}";
echo $char;  // Output: 璒

Ruby:

char = "\u{7492}"
puts char  # Output: 璒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007492";  /* Display: 璒 */
}

HTML Decimal:

<p>HTML decimal: &#29842;</p>  <!-- Display: 璒 -->

HTML Hexadecimal:

<p>HTML hex: &#x7492;</p>  <!-- Display: 璒 -->

URL Encoding:

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

Encodings

MD5:

c54fc9c8cd2f713ae9867ec6cab64601

SHA1:

5a888c1ad4d751ae3b0bd306fadb74cbd4aa9770

Base64:

55KS