Unicode Finder

"硯" U+786F(CJK UNIFIED IDEOGRAPH-786F)

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

Programming

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

Web

CSS
\00786F
HtmlDecimal
硯
HtmlHexadecimal
硯
Url
%E7%A1%AF

Code

MD5
a81153d1fcc1e27aaebbe789be257299
Sha1
46af5770ae173ed94ee20039ff6f3e953dada9ba
Base64
56Gv

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u786F';
console.log(char);  // Output: 硯

Java:

char c = '\u786F';
System.out.println(c);  // Output: 硯

JSON:

{"text": "\u786F"}  // Value: 硯

Python:

char = '\u786F'
print(char)  # Output: 硯

Perl:

my $char = "\x{786F}";
print $char;  # Output: 硯

PHP:

$char = "\x{786F}";
echo $char;  // Output: 硯

Ruby:

char = "\u{786F}"
puts char  # Output: 硯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30831;</p>  <!-- Display: 硯 -->

HTML Hexadecimal:

<p>HTML hex: &#x786F;</p>  <!-- Display: 硯 -->

URL Encoding:

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

Encodings

MD5:

a81153d1fcc1e27aaebbe789be257299

SHA1:

46af5770ae173ed94ee20039ff6f3e953dada9ba

Base64:

56Gv