Unicode Finder

"硣" U+7863(CJK UNIFIED IDEOGRAPH-7863)

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

Programming

C
\u7863
JavaScript
\u7863
Java
\u7863
Json
\u7863
Python
\u7863
Perl
\x{7863}
PHP
\x{7863}
Ruby
\u{7863}
Rust
\u{7863}
Go
\u7863

Web

CSS
\007863
HtmlDecimal
硣
HtmlHexadecimal
硣
Url
%E7%A1%A3

Code

MD5
57dad9e27bd65ad5dfa49c283726a185
Sha1
d320461b3b750dda62c82fce432de13f9824bc4f
Base64
56Gj

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7863';
console.log(char);  // Output: 硣

Java:

char c = '\u7863';
System.out.println(c);  // Output: 硣

JSON:

{"text": "\u7863"}  // Value: 硣

Python:

char = '\u7863'
print(char)  # Output: 硣

Perl:

my $char = "\x{7863}";
print $char;  # Output: 硣

PHP:

$char = "\x{7863}";
echo $char;  // Output: 硣

Ruby:

char = "\u{7863}"
puts char  # Output: 硣

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007863";  /* Display: 硣 */
}

HTML Decimal:

<p>HTML decimal: &#30819;</p>  <!-- Display: 硣 -->

HTML Hexadecimal:

<p>HTML hex: &#x7863;</p>  <!-- Display: 硣 -->

URL Encoding:

// 硣 URL encoding
https://unicodefinder.com/search.php?query=%E7%A1%A3

Encodings

MD5:

57dad9e27bd65ad5dfa49c283726a185

SHA1:

d320461b3b750dda62c82fce432de13f9824bc4f

Base64:

56Gj