Unicode Finder

"瑄" U+7444(CJK UNIFIED IDEOGRAPH-7444)

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

Programming

C
\u7444
JavaScript
\u7444
Java
\u7444
Json
\u7444
Python
\u7444
Perl
\x{7444}
PHP
\x{7444}
Ruby
\u{7444}
Rust
\u{7444}
Go
\u7444

Web

CSS
\007444
HtmlDecimal
瑄
HtmlHexadecimal
瑄
Url
%E7%91%84

Code

MD5
67a87c5ac37c85e545a258d61e935811
Sha1
8e7519f5be431df71819eb721ea851814d8ff4a4
Base64
55GE

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7444';
console.log(char);  // Output: 瑄

Java:

char c = '\u7444';
System.out.println(c);  // Output: 瑄

JSON:

{"text": "\u7444"}  // Value: 瑄

Python:

char = '\u7444'
print(char)  # Output: 瑄

Perl:

my $char = "\x{7444}";
print $char;  # Output: 瑄

PHP:

$char = "\x{7444}";
echo $char;  // Output: 瑄

Ruby:

char = "\u{7444}"
puts char  # Output: 瑄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007444";  /* Display: 瑄 */
}

HTML Decimal:

<p>HTML decimal: &#29764;</p>  <!-- Display: 瑄 -->

HTML Hexadecimal:

<p>HTML hex: &#x7444;</p>  <!-- Display: 瑄 -->

URL Encoding:

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

Encodings

MD5:

67a87c5ac37c85e545a258d61e935811

SHA1:

8e7519f5be431df71819eb721ea851814d8ff4a4

Base64:

55GE