Unicode Finder

"砸" U+7838(CJK UNIFIED IDEOGRAPH-7838)

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

Programming

C
\u7838
JavaScript
\u7838
Java
\u7838
Json
\u7838
Python
\u7838
Perl
\x{7838}
PHP
\x{7838}
Ruby
\u{7838}
Rust
\u{7838}
Go
\u7838

Web

CSS
\007838
HtmlDecimal
砸
HtmlHexadecimal
砸
Url
%E7%A0%B8

Code

MD5
fdcf798a966b9574153430f08f675f06
Sha1
b0e4c5ac832335932b72e48410994d822c441246
Base64
56C4

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7838';
console.log(char);  // Output: 砸

Java:

char c = '\u7838';
System.out.println(c);  // Output: 砸

JSON:

{"text": "\u7838"}  // Value: 砸

Python:

char = '\u7838'
print(char)  # Output: 砸

Perl:

my $char = "\x{7838}";
print $char;  # Output: 砸

PHP:

$char = "\x{7838}";
echo $char;  // Output: 砸

Ruby:

char = "\u{7838}"
puts char  # Output: 砸

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007838";  /* Display: 砸 */
}

HTML Decimal:

<p>HTML decimal: &#30776;</p>  <!-- Display: 砸 -->

HTML Hexadecimal:

<p>HTML hex: &#x7838;</p>  <!-- Display: 砸 -->

URL Encoding:

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

Encodings

MD5:

fdcf798a966b9574153430f08f675f06

SHA1:

b0e4c5ac832335932b72e48410994d822c441246

Base64:

56C4