Unicode Finder

"砃" U+7803(CJK UNIFIED IDEOGRAPH-7803)

U+7803
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-7803

Programming

C
\u7803
JavaScript
\u7803
Java
\u7803
Json
\u7803
Python
\u7803
Perl
\x{7803}
PHP
\x{7803}
Ruby
\u{7803}
Rust
\u{7803}
Go
\u7803

Web

CSS
\007803
HtmlDecimal
砃
HtmlHexadecimal
砃
Url
%E7%A0%83

Code

MD5
f77295bad4e3933aa8c175b78f90eed9
Sha1
dcfec774b9787ab3d23e68e6050c934ebc016dae
Base64
56CD

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7803';
console.log(char);  // Output: 砃

Java:

char c = '\u7803';
System.out.println(c);  // Output: 砃

JSON:

{"text": "\u7803"}  // Value: 砃

Python:

char = '\u7803'
print(char)  # Output: 砃

Perl:

my $char = "\x{7803}";
print $char;  # Output: 砃

PHP:

$char = "\x{7803}";
echo $char;  // Output: 砃

Ruby:

char = "\u{7803}"
puts char  # Output: 砃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007803";  /* Display: 砃 */
}

HTML Decimal:

<p>HTML decimal: &#30723;</p>  <!-- Display: 砃 -->

HTML Hexadecimal:

<p>HTML hex: &#x7803;</p>  <!-- Display: 砃 -->

URL Encoding:

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

Encodings

MD5:

f77295bad4e3933aa8c175b78f90eed9

SHA1:

dcfec774b9787ab3d23e68e6050c934ebc016dae

Base64:

56CD