Unicode Finder

"瀠" U+7020(CJK UNIFIED IDEOGRAPH-7020)

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

Programming

C
\u7020
JavaScript
\u7020
Java
\u7020
Json
\u7020
Python
\u7020
Perl
\x{7020}
PHP
\x{7020}
Ruby
\u{7020}
Rust
\u{7020}
Go
\u7020

Web

CSS
\007020
HtmlDecimal
瀠
HtmlHexadecimal
瀠
Url
%E7%80%A0

Code

MD5
4ed9ae2d5332c05c4cc0597594f6549b
Sha1
4632b4a7fe16f457a270519303d08da54e3d221e
Base64
54Cg

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7020';
console.log(char);  // Output: 瀠

Java:

char c = '\u7020';
System.out.println(c);  // Output: 瀠

JSON:

{"text": "\u7020"}  // Value: 瀠

Python:

char = '\u7020'
print(char)  # Output: 瀠

Perl:

my $char = "\x{7020}";
print $char;  # Output: 瀠

PHP:

$char = "\x{7020}";
echo $char;  // Output: 瀠

Ruby:

char = "\u{7020}"
puts char  # Output: 瀠

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007020";  /* Display: 瀠 */
}

HTML Decimal:

<p>HTML decimal: &#28704;</p>  <!-- Display: 瀠 -->

HTML Hexadecimal:

<p>HTML hex: &#x7020;</p>  <!-- Display: 瀠 -->

URL Encoding:

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

Encodings

MD5:

4ed9ae2d5332c05c4cc0597594f6549b

SHA1:

4632b4a7fe16f457a270519303d08da54e3d221e

Base64:

54Cg