Unicode Finder

"蜃" U+8703(CJK UNIFIED IDEOGRAPH-8703)

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

Programming

C
\u8703
JavaScript
\u8703
Java
\u8703
Json
\u8703
Python
\u8703
Perl
\x{8703}
PHP
\x{8703}
Ruby
\u{8703}
Rust
\u{8703}
Go
\u8703

Web

CSS
\008703
HtmlDecimal
蜃
HtmlHexadecimal
蜃
Url
%E8%9C%83

Code

MD5
fc6855c17df2c1bf8c36915dc55536f2
Sha1
b0af27e6e668bec18cfe5e5b86c2c5b268e021ed
Base64
6JyD

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8703';
console.log(char);  // Output: 蜃

Java:

char c = '\u8703';
System.out.println(c);  // Output: 蜃

JSON:

{"text": "\u8703"}  // Value: 蜃

Python:

char = '\u8703'
print(char)  # Output: 蜃

Perl:

my $char = "\x{8703}";
print $char;  # Output: 蜃

PHP:

$char = "\x{8703}";
echo $char;  // Output: 蜃

Ruby:

char = "\u{8703}"
puts char  # Output: 蜃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008703";  /* Display: 蜃 */
}

HTML Decimal:

<p>HTML decimal: &#34563;</p>  <!-- Display: 蜃 -->

HTML Hexadecimal:

<p>HTML hex: &#x8703;</p>  <!-- Display: 蜃 -->

URL Encoding:

// 蜃 URL encoding
https://unicodefinder.com/search.php?query=%E8%9C%83

Encodings

MD5:

fc6855c17df2c1bf8c36915dc55536f2

SHA1:

b0af27e6e668bec18cfe5e5b86c2c5b268e021ed

Base64:

6JyD