Unicode Finder

"瑓" U+7453(CJK UNIFIED IDEOGRAPH-7453)

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

Programming

C
\u7453
JavaScript
\u7453
Java
\u7453
Json
\u7453
Python
\u7453
Perl
\x{7453}
PHP
\x{7453}
Ruby
\u{7453}
Rust
\u{7453}
Go
\u7453

Web

CSS
\007453
HtmlDecimal
瑓
HtmlHexadecimal
瑓
Url
%E7%91%93

Code

MD5
dfd771ba57440db3d3a333440e4a7591
Sha1
ed5ac1bc961dd375275fc99644f66c215f39c272
Base64
55GT

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7453';
console.log(char);  // Output: 瑓

Java:

char c = '\u7453';
System.out.println(c);  // Output: 瑓

JSON:

{"text": "\u7453"}  // Value: 瑓

Python:

char = '\u7453'
print(char)  # Output: 瑓

Perl:

my $char = "\x{7453}";
print $char;  # Output: 瑓

PHP:

$char = "\x{7453}";
echo $char;  // Output: 瑓

Ruby:

char = "\u{7453}"
puts char  # Output: 瑓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007453";  /* Display: 瑓 */
}

HTML Decimal:

<p>HTML decimal: &#29779;</p>  <!-- Display: 瑓 -->

HTML Hexadecimal:

<p>HTML hex: &#x7453;</p>  <!-- Display: 瑓 -->

URL Encoding:

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

Encodings

MD5:

dfd771ba57440db3d3a333440e4a7591

SHA1:

ed5ac1bc961dd375275fc99644f66c215f39c272

Base64:

55GT