Unicode Finder

"砹" U+7839(CJK UNIFIED IDEOGRAPH-7839)

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

Programming

C
\u7839
JavaScript
\u7839
Java
\u7839
Json
\u7839
Python
\u7839
Perl
\x{7839}
PHP
\x{7839}
Ruby
\u{7839}
Rust
\u{7839}
Go
\u7839

Web

CSS
\007839
HtmlDecimal
砹
HtmlHexadecimal
砹
Url
%E7%A0%B9

Code

MD5
8d0769fcd0121f7b48091f0af4715b04
Sha1
e4c20366fa26e5775f1a3f1e7330afc5d9858939
Base64
56C5

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7839';
console.log(char);  // Output: 砹

Java:

char c = '\u7839';
System.out.println(c);  // Output: 砹

JSON:

{"text": "\u7839"}  // Value: 砹

Python:

char = '\u7839'
print(char)  # Output: 砹

Perl:

my $char = "\x{7839}";
print $char;  # Output: 砹

PHP:

$char = "\x{7839}";
echo $char;  // Output: 砹

Ruby:

char = "\u{7839}"
puts char  # Output: 砹

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007839";  /* Display: 砹 */
}

HTML Decimal:

<p>HTML decimal: &#30777;</p>  <!-- Display: 砹 -->

HTML Hexadecimal:

<p>HTML hex: &#x7839;</p>  <!-- Display: 砹 -->

URL Encoding:

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

Encodings

MD5:

8d0769fcd0121f7b48091f0af4715b04

SHA1:

e4c20366fa26e5775f1a3f1e7330afc5d9858939

Base64:

56C5