Unicode Finder

"瑆" U+7446(CJK UNIFIED IDEOGRAPH-7446)

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

Programming

C
\u7446
JavaScript
\u7446
Java
\u7446
Json
\u7446
Python
\u7446
Perl
\x{7446}
PHP
\x{7446}
Ruby
\u{7446}
Rust
\u{7446}
Go
\u7446

Web

CSS
\007446
HtmlDecimal
瑆
HtmlHexadecimal
瑆
Url
%E7%91%86

Code

MD5
1a933fc0178b5a7eb66ce19c156e505e
Sha1
93ab3a243f25c78b0f2b4faa882a39abb4ab0627
Base64
55GG

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7446';
console.log(char);  // Output: 瑆

Java:

char c = '\u7446';
System.out.println(c);  // Output: 瑆

JSON:

{"text": "\u7446"}  // Value: 瑆

Python:

char = '\u7446'
print(char)  # Output: 瑆

Perl:

my $char = "\x{7446}";
print $char;  # Output: 瑆

PHP:

$char = "\x{7446}";
echo $char;  // Output: 瑆

Ruby:

char = "\u{7446}"
puts char  # Output: 瑆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007446";  /* Display: 瑆 */
}

HTML Decimal:

<p>HTML decimal: &#29766;</p>  <!-- Display: 瑆 -->

HTML Hexadecimal:

<p>HTML hex: &#x7446;</p>  <!-- Display: 瑆 -->

URL Encoding:

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

Encodings

MD5:

1a933fc0178b5a7eb66ce19c156e505e

SHA1:

93ab3a243f25c78b0f2b4faa882a39abb4ab0627

Base64:

55GG