Unicode Finder

"瑐" U+7450(CJK UNIFIED IDEOGRAPH-7450)

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

Programming

C
\u7450
JavaScript
\u7450
Java
\u7450
Json
\u7450
Python
\u7450
Perl
\x{7450}
PHP
\x{7450}
Ruby
\u{7450}
Rust
\u{7450}
Go
\u7450

Web

CSS
\007450
HtmlDecimal
瑐
HtmlHexadecimal
瑐
Url
%E7%91%90

Code

MD5
75136c8ed4ae9729343676fe45d15298
Sha1
b978b381bedf7a405938748713453f050a2d5891
Base64
55GQ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7450';
console.log(char);  // Output: 瑐

Java:

char c = '\u7450';
System.out.println(c);  // Output: 瑐

JSON:

{"text": "\u7450"}  // Value: 瑐

Python:

char = '\u7450'
print(char)  # Output: 瑐

Perl:

my $char = "\x{7450}";
print $char;  # Output: 瑐

PHP:

$char = "\x{7450}";
echo $char;  // Output: 瑐

Ruby:

char = "\u{7450}"
puts char  # Output: 瑐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007450";  /* Display: 瑐 */
}

HTML Decimal:

<p>HTML decimal: &#29776;</p>  <!-- Display: 瑐 -->

HTML Hexadecimal:

<p>HTML hex: &#x7450;</p>  <!-- Display: 瑐 -->

URL Encoding:

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

Encodings

MD5:

75136c8ed4ae9729343676fe45d15298

SHA1:

b978b381bedf7a405938748713453f050a2d5891

Base64:

55GQ