Unicode Finder

"濖" U+6FD6(CJK UNIFIED IDEOGRAPH-6FD6)

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

Programming

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

Web

CSS
\006FD6
HtmlDecimal
濖
HtmlHexadecimal
濖
Url
%E6%BF%96

Code

MD5
11947d071cc8abadd29132ec1ca4116a
Sha1
86db2300107cec7c054f87ebf5b99b242855df5c
Base64
5r+W

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6FD6';
console.log(char);  // Output: 濖

Java:

char c = '\u6FD6';
System.out.println(c);  // Output: 濖

JSON:

{"text": "\u6FD6"}  // Value: 濖

Python:

char = '\u6FD6'
print(char)  # Output: 濖

Perl:

my $char = "\x{6FD6}";
print $char;  # Output: 濖

PHP:

$char = "\x{6FD6}";
echo $char;  // Output: 濖

Ruby:

char = "\u{6FD6}"
puts char  # Output: 濖

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28630;</p>  <!-- Display: 濖 -->

HTML Hexadecimal:

<p>HTML hex: &#x6FD6;</p>  <!-- Display: 濖 -->

URL Encoding:

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

Encodings

MD5:

11947d071cc8abadd29132ec1ca4116a

SHA1:

86db2300107cec7c054f87ebf5b99b242855df5c

Base64:

5r+W