Unicode Finder

"瀄" U+7004(CJK UNIFIED IDEOGRAPH-7004)

U+7004
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-7004

Programming

C
\u7004
JavaScript
\u7004
Java
\u7004
Json
\u7004
Python
\u7004
Perl
\x{7004}
PHP
\x{7004}
Ruby
\u{7004}
Rust
\u{7004}
Go
\u7004

Web

CSS
\007004
HtmlDecimal
瀄
HtmlHexadecimal
瀄
Url
%E7%80%84

Code

MD5
f7e7b66f886cfaaf53e502a3800c4d1c
Sha1
7e6937103c0f42ba65230e08b0e03d2135654ad3
Base64
54CE

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7004';
console.log(char);  // Output: 瀄

Java:

char c = '\u7004';
System.out.println(c);  // Output: 瀄

JSON:

{"text": "\u7004"}  // Value: 瀄

Python:

char = '\u7004'
print(char)  # Output: 瀄

Perl:

my $char = "\x{7004}";
print $char;  # Output: 瀄

PHP:

$char = "\x{7004}";
echo $char;  // Output: 瀄

Ruby:

char = "\u{7004}"
puts char  # Output: 瀄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007004";  /* Display: 瀄 */
}

HTML Decimal:

<p>HTML decimal: &#28676;</p>  <!-- Display: 瀄 -->

HTML Hexadecimal:

<p>HTML hex: &#x7004;</p>  <!-- Display: 瀄 -->

URL Encoding:

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

Encodings

MD5:

f7e7b66f886cfaaf53e502a3800c4d1c

SHA1:

7e6937103c0f42ba65230e08b0e03d2135654ad3

Base64:

54CE