Unicode Finder

"瀇" U+7007(CJK UNIFIED IDEOGRAPH-7007)

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

Programming

C
\u7007
JavaScript
\u7007
Java
\u7007
Json
\u7007
Python
\u7007
Perl
\x{7007}
PHP
\x{7007}
Ruby
\u{7007}
Rust
\u{7007}
Go
\u7007

Web

CSS
\007007
HtmlDecimal
瀇
HtmlHexadecimal
瀇
Url
%E7%80%87

Code

MD5
1c3a16951208d97aedd2bb7de30c7046
Sha1
ff5240ac45467a7a4f7d42634fe41a069a9f860b
Base64
54CH

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7007';
console.log(char);  // Output: 瀇

Java:

char c = '\u7007';
System.out.println(c);  // Output: 瀇

JSON:

{"text": "\u7007"}  // Value: 瀇

Python:

char = '\u7007'
print(char)  # Output: 瀇

Perl:

my $char = "\x{7007}";
print $char;  # Output: 瀇

PHP:

$char = "\x{7007}";
echo $char;  // Output: 瀇

Ruby:

char = "\u{7007}"
puts char  # Output: 瀇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007007";  /* Display: 瀇 */
}

HTML Decimal:

<p>HTML decimal: &#28679;</p>  <!-- Display: 瀇 -->

HTML Hexadecimal:

<p>HTML hex: &#x7007;</p>  <!-- Display: 瀇 -->

URL Encoding:

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

Encodings

MD5:

1c3a16951208d97aedd2bb7de30c7046

SHA1:

ff5240ac45467a7a4f7d42634fe41a069a9f860b

Base64:

54CH