Unicode Finder

"瑂" U+7442(CJK UNIFIED IDEOGRAPH-7442)

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

Programming

C
\u7442
JavaScript
\u7442
Java
\u7442
Json
\u7442
Python
\u7442
Perl
\x{7442}
PHP
\x{7442}
Ruby
\u{7442}
Rust
\u{7442}
Go
\u7442

Web

CSS
\007442
HtmlDecimal
瑂
HtmlHexadecimal
瑂
Url
%E7%91%82

Code

MD5
6579e09d51768364cc80a024284151c8
Sha1
636d9a5e1ee38d0232d0eea77b23f544f0d9f58e
Base64
55GC

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7442';
console.log(char);  // Output: 瑂

Java:

char c = '\u7442';
System.out.println(c);  // Output: 瑂

JSON:

{"text": "\u7442"}  // Value: 瑂

Python:

char = '\u7442'
print(char)  # Output: 瑂

Perl:

my $char = "\x{7442}";
print $char;  # Output: 瑂

PHP:

$char = "\x{7442}";
echo $char;  // Output: 瑂

Ruby:

char = "\u{7442}"
puts char  # Output: 瑂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007442";  /* Display: 瑂 */
}

HTML Decimal:

<p>HTML decimal: &#29762;</p>  <!-- Display: 瑂 -->

HTML Hexadecimal:

<p>HTML hex: &#x7442;</p>  <!-- Display: 瑂 -->

URL Encoding:

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

Encodings

MD5:

6579e09d51768364cc80a024284151c8

SHA1:

636d9a5e1ee38d0232d0eea77b23f544f0d9f58e

Base64:

55GC