Unicode Finder

"硨" U+7868(CJK UNIFIED IDEOGRAPH-7868)

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

Programming

C
\u7868
JavaScript
\u7868
Java
\u7868
Json
\u7868
Python
\u7868
Perl
\x{7868}
PHP
\x{7868}
Ruby
\u{7868}
Rust
\u{7868}
Go
\u7868

Web

CSS
\007868
HtmlDecimal
硨
HtmlHexadecimal
硨
Url
%E7%A1%A8

Code

MD5
3871bb59cf080d1c695e28d04e82f128
Sha1
34f735564c9e6267ec010e5c3ef51607f219559d
Base64
56Go

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7868';
console.log(char);  // Output: 硨

Java:

char c = '\u7868';
System.out.println(c);  // Output: 硨

JSON:

{"text": "\u7868"}  // Value: 硨

Python:

char = '\u7868'
print(char)  # Output: 硨

Perl:

my $char = "\x{7868}";
print $char;  # Output: 硨

PHP:

$char = "\x{7868}";
echo $char;  // Output: 硨

Ruby:

char = "\u{7868}"
puts char  # Output: 硨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007868";  /* Display: 硨 */
}

HTML Decimal:

<p>HTML decimal: &#30824;</p>  <!-- Display: 硨 -->

HTML Hexadecimal:

<p>HTML hex: &#x7868;</p>  <!-- Display: 硨 -->

URL Encoding:

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

Encodings

MD5:

3871bb59cf080d1c695e28d04e82f128

SHA1:

34f735564c9e6267ec010e5c3ef51607f219559d

Base64:

56Go