Unicode Finder

"确" U+786E(CJK UNIFIED IDEOGRAPH-786E)

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

Programming

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

Web

CSS
\00786E
HtmlDecimal
确
HtmlHexadecimal
确
Url
%E7%A1%AE

Code

MD5
2d7a2f71513129bb8856e39f2c9390bb
Sha1
a1275d16ca28007dfd2e35e7a9fe5a327146ddf2
Base64
56Gu

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u786E';
console.log(char);  // Output: 确

Java:

char c = '\u786E';
System.out.println(c);  // Output: 确

JSON:

{"text": "\u786E"}  // Value: 确

Python:

char = '\u786E'
print(char)  # Output: 确

Perl:

my $char = "\x{786E}";
print $char;  # Output: 确

PHP:

$char = "\x{786E}";
echo $char;  // Output: 确

Ruby:

char = "\u{786E}"
puts char  # Output: 确

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30830;</p>  <!-- Display: 确 -->

HTML Hexadecimal:

<p>HTML hex: &#x786E;</p>  <!-- Display: 确 -->

URL Encoding:

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

Encodings

MD5:

2d7a2f71513129bb8856e39f2c9390bb

SHA1:

a1275d16ca28007dfd2e35e7a9fe5a327146ddf2

Base64:

56Gu