Unicode Finder

"瀅" U+7005(CJK UNIFIED IDEOGRAPH-7005)

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

Programming

C
\u7005
JavaScript
\u7005
Java
\u7005
Json
\u7005
Python
\u7005
Perl
\x{7005}
PHP
\x{7005}
Ruby
\u{7005}
Rust
\u{7005}
Go
\u7005

Web

CSS
\007005
HtmlDecimal
瀅
HtmlHexadecimal
瀅
Url
%E7%80%85

Code

MD5
c011ee4228fcdc5a49f844cabd30bd34
Sha1
2e5a4da2f45f44385b47f62659ef1a02a185e76f
Base64
54CF

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7005';
console.log(char);  // Output: 瀅

Java:

char c = '\u7005';
System.out.println(c);  // Output: 瀅

JSON:

{"text": "\u7005"}  // Value: 瀅

Python:

char = '\u7005'
print(char)  # Output: 瀅

Perl:

my $char = "\x{7005}";
print $char;  # Output: 瀅

PHP:

$char = "\x{7005}";
echo $char;  // Output: 瀅

Ruby:

char = "\u{7005}"
puts char  # Output: 瀅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007005";  /* Display: 瀅 */
}

HTML Decimal:

<p>HTML decimal: &#28677;</p>  <!-- Display: 瀅 -->

HTML Hexadecimal:

<p>HTML hex: &#x7005;</p>  <!-- Display: 瀅 -->

URL Encoding:

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

Encodings

MD5:

c011ee4228fcdc5a49f844cabd30bd34

SHA1:

2e5a4da2f45f44385b47f62659ef1a02a185e76f

Base64:

54CF