Unicode Finder

"瑇" U+7447(CJK UNIFIED IDEOGRAPH-7447)

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

Programming

C
\u7447
JavaScript
\u7447
Java
\u7447
Json
\u7447
Python
\u7447
Perl
\x{7447}
PHP
\x{7447}
Ruby
\u{7447}
Rust
\u{7447}
Go
\u7447

Web

CSS
\007447
HtmlDecimal
瑇
HtmlHexadecimal
瑇
Url
%E7%91%87

Code

MD5
07a74ec172751ba1336d87cefa6e925c
Sha1
87d4ec494980557e8c46befc662331c0accb4729
Base64
55GH

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7447';
console.log(char);  // Output: 瑇

Java:

char c = '\u7447';
System.out.println(c);  // Output: 瑇

JSON:

{"text": "\u7447"}  // Value: 瑇

Python:

char = '\u7447'
print(char)  # Output: 瑇

Perl:

my $char = "\x{7447}";
print $char;  # Output: 瑇

PHP:

$char = "\x{7447}";
echo $char;  // Output: 瑇

Ruby:

char = "\u{7447}"
puts char  # Output: 瑇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007447";  /* Display: 瑇 */
}

HTML Decimal:

<p>HTML decimal: &#29767;</p>  <!-- Display: 瑇 -->

HTML Hexadecimal:

<p>HTML hex: &#x7447;</p>  <!-- Display: 瑇 -->

URL Encoding:

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

Encodings

MD5:

07a74ec172751ba1336d87cefa6e925c

SHA1:

87d4ec494980557e8c46befc662331c0accb4729

Base64:

55GH