Unicode Finder

"濗" U+6FD7(CJK UNIFIED IDEOGRAPH-6FD7)

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

Programming

C
\u6FD7
JavaScript
\u6FD7
Java
\u6FD7
Json
\u6FD7
Python
\u6FD7
Perl
\x{6FD7}
PHP
\x{6FD7}
Ruby
\u{6FD7}
Rust
\u{6FD7}
Go
\u6FD7

Web

CSS
\006FD7
HtmlDecimal
濗
HtmlHexadecimal
濗
Url
%E6%BF%97

Code

MD5
30a9797e8aa7aa70661cf33b91e61943
Sha1
2e7d2566f1e1732b19d040776f3219293720d3b3
Base64
5r+X

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6FD7';
console.log(char);  // Output: 濗

Java:

char c = '\u6FD7';
System.out.println(c);  // Output: 濗

JSON:

{"text": "\u6FD7"}  // Value: 濗

Python:

char = '\u6FD7'
print(char)  # Output: 濗

Perl:

my $char = "\x{6FD7}";
print $char;  # Output: 濗

PHP:

$char = "\x{6FD7}";
echo $char;  // Output: 濗

Ruby:

char = "\u{6FD7}"
puts char  # Output: 濗

Rust:

let c = '\u{6FD7}';
println!("{}", c);  // Output: 濗

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006FD7";  /* Display: 濗 */
}

HTML Decimal:

<p>HTML decimal: &#28631;</p>  <!-- Display: 濗 -->

HTML Hexadecimal:

<p>HTML hex: &#x6FD7;</p>  <!-- Display: 濗 -->

URL Encoding:

// 濗 URL encoding
https://unicodefinder.com/search.php?query=%E6%BF%97

Encodings

MD5:

30a9797e8aa7aa70661cf33b91e61943

SHA1:

2e7d2566f1e1732b19d040776f3219293720d3b3

Base64:

5r+X