Unicode Finder

"瀢" U+7022(CJK UNIFIED IDEOGRAPH-7022)

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

Programming

C
\u7022
JavaScript
\u7022
Java
\u7022
Json
\u7022
Python
\u7022
Perl
\x{7022}
PHP
\x{7022}
Ruby
\u{7022}
Rust
\u{7022}
Go
\u7022

Web

CSS
\007022
HtmlDecimal
瀢
HtmlHexadecimal
瀢
Url
%E7%80%A2

Code

MD5
ceea6404a685012f14b0c39df528f88e
Sha1
8e71a0038ceaf15302cb2543dd80d8ff9df5d6ff
Base64
54Ci

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7022';
console.log(char);  // Output: 瀢

Java:

char c = '\u7022';
System.out.println(c);  // Output: 瀢

JSON:

{"text": "\u7022"}  // Value: 瀢

Python:

char = '\u7022'
print(char)  # Output: 瀢

Perl:

my $char = "\x{7022}";
print $char;  # Output: 瀢

PHP:

$char = "\x{7022}";
echo $char;  // Output: 瀢

Ruby:

char = "\u{7022}"
puts char  # Output: 瀢

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007022";  /* Display: 瀢 */
}

HTML Decimal:

<p>HTML decimal: &#28706;</p>  <!-- Display: 瀢 -->

HTML Hexadecimal:

<p>HTML hex: &#x7022;</p>  <!-- Display: 瀢 -->

URL Encoding:

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

Encodings

MD5:

ceea6404a685012f14b0c39df528f88e

SHA1:

8e71a0038ceaf15302cb2543dd80d8ff9df5d6ff

Base64:

54Ci