Unicode Finder

"硢" U+7862(CJK UNIFIED IDEOGRAPH-7862)

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

Programming

C
\u7862
JavaScript
\u7862
Java
\u7862
Json
\u7862
Python
\u7862
Perl
\x{7862}
PHP
\x{7862}
Ruby
\u{7862}
Rust
\u{7862}
Go
\u7862

Web

CSS
\007862
HtmlDecimal
硢
HtmlHexadecimal
硢
Url
%E7%A1%A2

Code

MD5
bf9ba84ee2b0fa2dd3cfa395d50e1aa2
Sha1
dd8416bd1e477c245dcfa1956b81d465cd675635
Base64
56Gi

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7862';
console.log(char);  // Output: 硢

Java:

char c = '\u7862';
System.out.println(c);  // Output: 硢

JSON:

{"text": "\u7862"}  // Value: 硢

Python:

char = '\u7862'
print(char)  # Output: 硢

Perl:

my $char = "\x{7862}";
print $char;  # Output: 硢

PHP:

$char = "\x{7862}";
echo $char;  // Output: 硢

Ruby:

char = "\u{7862}"
puts char  # Output: 硢

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007862";  /* Display: 硢 */
}

HTML Decimal:

<p>HTML decimal: &#30818;</p>  <!-- Display: 硢 -->

HTML Hexadecimal:

<p>HTML hex: &#x7862;</p>  <!-- Display: 硢 -->

URL Encoding:

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

Encodings

MD5:

bf9ba84ee2b0fa2dd3cfa395d50e1aa2

SHA1:

dd8416bd1e477c245dcfa1956b81d465cd675635

Base64:

56Gi