Unicode Finder

"瑦" U+7466(CJK UNIFIED IDEOGRAPH-7466)

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

Programming

C
\u7466
JavaScript
\u7466
Java
\u7466
Json
\u7466
Python
\u7466
Perl
\x{7466}
PHP
\x{7466}
Ruby
\u{7466}
Rust
\u{7466}
Go
\u7466

Web

CSS
\007466
HtmlDecimal
瑦
HtmlHexadecimal
瑦
Url
%E7%91%A6

Code

MD5
3577eeaac2784d2c4cae800156bd863b
Sha1
1154158ceb5d8ff83a4d05f04395dc3ad50f6838
Base64
55Gm

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7466';
console.log(char);  // Output: 瑦

Java:

char c = '\u7466';
System.out.println(c);  // Output: 瑦

JSON:

{"text": "\u7466"}  // Value: 瑦

Python:

char = '\u7466'
print(char)  # Output: 瑦

Perl:

my $char = "\x{7466}";
print $char;  # Output: 瑦

PHP:

$char = "\x{7466}";
echo $char;  // Output: 瑦

Ruby:

char = "\u{7466}"
puts char  # Output: 瑦

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007466";  /* Display: 瑦 */
}

HTML Decimal:

<p>HTML decimal: &#29798;</p>  <!-- Display: 瑦 -->

HTML Hexadecimal:

<p>HTML hex: &#x7466;</p>  <!-- Display: 瑦 -->

URL Encoding:

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

Encodings

MD5:

3577eeaac2784d2c4cae800156bd863b

SHA1:

1154158ceb5d8ff83a4d05f04395dc3ad50f6838

Base64:

55Gm