Unicode Finder

"砶" U+7836(CJK UNIFIED IDEOGRAPH-7836)

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

Programming

C
\u7836
JavaScript
\u7836
Java
\u7836
Json
\u7836
Python
\u7836
Perl
\x{7836}
PHP
\x{7836}
Ruby
\u{7836}
Rust
\u{7836}
Go
\u7836

Web

CSS
\007836
HtmlDecimal
砶
HtmlHexadecimal
砶
Url
%E7%A0%B6

Code

MD5
f905c7b50f9fabb1afe7d398a8d8137e
Sha1
4d23198148ff025f9dfcf069e048d802312d3fc0
Base64
56C2

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7836';
console.log(char);  // Output: 砶

Java:

char c = '\u7836';
System.out.println(c);  // Output: 砶

JSON:

{"text": "\u7836"}  // Value: 砶

Python:

char = '\u7836'
print(char)  # Output: 砶

Perl:

my $char = "\x{7836}";
print $char;  # Output: 砶

PHP:

$char = "\x{7836}";
echo $char;  // Output: 砶

Ruby:

char = "\u{7836}"
puts char  # Output: 砶

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007836";  /* Display: 砶 */
}

HTML Decimal:

<p>HTML decimal: &#30774;</p>  <!-- Display: 砶 -->

HTML Hexadecimal:

<p>HTML hex: &#x7836;</p>  <!-- Display: 砶 -->

URL Encoding:

// 砶 URL encoding
https://unicodefinder.com/search.php?query=%E7%A0%B6

Encodings

MD5:

f905c7b50f9fabb1afe7d398a8d8137e

SHA1:

4d23198148ff025f9dfcf069e048d802312d3fc0

Base64:

56C2