Unicode Finder

"硫" U+786B(CJK UNIFIED IDEOGRAPH-786B)

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

Programming

C
\u786B
JavaScript
\u786B
Java
\u786B
Json
\u786B
Python
\u786B
Perl
\x{786B}
PHP
\x{786B}
Ruby
\u{786B}
Rust
\u{786B}
Go
\u786B

Web

CSS
\00786B
HtmlDecimal
硫
HtmlHexadecimal
硫
Url
%E7%A1%AB

Code

MD5
afe09a4eca338690c2da58a99277e29e
Sha1
b74953770a3346ea8ff3d49c7beab6d2c291dd51
Base64
56Gr

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u786B';
console.log(char);  // Output: 硫

Java:

char c = '\u786B';
System.out.println(c);  // Output: 硫

JSON:

{"text": "\u786B"}  // Value: 硫

Python:

char = '\u786B'
print(char)  # Output: 硫

Perl:

my $char = "\x{786B}";
print $char;  # Output: 硫

PHP:

$char = "\x{786B}";
echo $char;  // Output: 硫

Ruby:

char = "\u{786B}"
puts char  # Output: 硫

Rust:

let c = '\u{786B}';
println!("{}", c);  // Output: 硫

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00786B";  /* Display: 硫 */
}

HTML Decimal:

<p>HTML decimal: &#30827;</p>  <!-- Display: 硫 -->

HTML Hexadecimal:

<p>HTML hex: &#x786B;</p>  <!-- Display: 硫 -->

URL Encoding:

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

Encodings

MD5:

afe09a4eca338690c2da58a99277e29e

SHA1:

b74953770a3346ea8ff3d49c7beab6d2c291dd51

Base64:

56Gr