Unicode Finder

"瀀" U+7000(CJK UNIFIED IDEOGRAPH-7000)

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

Programming

C
\u7000
JavaScript
\u7000
Java
\u7000
Json
\u7000
Python
\u7000
Perl
\x{7000}
PHP
\x{7000}
Ruby
\u{7000}
Rust
\u{7000}
Go
\u7000

Web

CSS
\007000
HtmlDecimal
瀀
HtmlHexadecimal
瀀
Url
%E7%80%80

Code

MD5
c891717c5efd791baadad39aff226dc2
Sha1
c0067e356bd834b1a2c111e04a4b160e003997e3
Base64
54CA

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7000';
console.log(char);  // Output: 瀀

Java:

char c = '\u7000';
System.out.println(c);  // Output: 瀀

JSON:

{"text": "\u7000"}  // Value: 瀀

Python:

char = '\u7000'
print(char)  # Output: 瀀

Perl:

my $char = "\x{7000}";
print $char;  # Output: 瀀

PHP:

$char = "\x{7000}";
echo $char;  // Output: 瀀

Ruby:

char = "\u{7000}"
puts char  # Output: 瀀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007000";  /* Display: 瀀 */
}

HTML Decimal:

<p>HTML decimal: &#28672;</p>  <!-- Display: 瀀 -->

HTML Hexadecimal:

<p>HTML hex: &#x7000;</p>  <!-- Display: 瀀 -->

URL Encoding:

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

Encodings

MD5:

c891717c5efd791baadad39aff226dc2

SHA1:

c0067e356bd834b1a2c111e04a4b160e003997e3

Base64:

54CA