Unicode Finder

"硐" U+7850(CJK UNIFIED IDEOGRAPH-7850)

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

Programming

C
\u7850
JavaScript
\u7850
Java
\u7850
Json
\u7850
Python
\u7850
Perl
\x{7850}
PHP
\x{7850}
Ruby
\u{7850}
Rust
\u{7850}
Go
\u7850

Web

CSS
\007850
HtmlDecimal
硐
HtmlHexadecimal
硐
Url
%E7%A1%90

Code

MD5
752850c375d90a64baf9ee8751ed7c46
Sha1
8cff07715a8e0eeb85d453bd43c37156afbd6777
Base64
56GQ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7850';
console.log(char);  // Output: 硐

Java:

char c = '\u7850';
System.out.println(c);  // Output: 硐

JSON:

{"text": "\u7850"}  // Value: 硐

Python:

char = '\u7850'
print(char)  # Output: 硐

Perl:

my $char = "\x{7850}";
print $char;  # Output: 硐

PHP:

$char = "\x{7850}";
echo $char;  // Output: 硐

Ruby:

char = "\u{7850}"
puts char  # Output: 硐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007850";  /* Display: 硐 */
}

HTML Decimal:

<p>HTML decimal: &#30800;</p>  <!-- Display: 硐 -->

HTML Hexadecimal:

<p>HTML hex: &#x7850;</p>  <!-- Display: 硐 -->

URL Encoding:

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

Encodings

MD5:

752850c375d90a64baf9ee8751ed7c46

SHA1:

8cff07715a8e0eeb85d453bd43c37156afbd6777

Base64:

56GQ