Unicode Finder

"砇" U+7807(CJK UNIFIED IDEOGRAPH-7807)

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

Programming

C
\u7807
JavaScript
\u7807
Java
\u7807
Json
\u7807
Python
\u7807
Perl
\x{7807}
PHP
\x{7807}
Ruby
\u{7807}
Rust
\u{7807}
Go
\u7807

Web

CSS
\007807
HtmlDecimal
砇
HtmlHexadecimal
砇
Url
%E7%A0%87

Code

MD5
f529dac3dab65cc6fbc217197e373392
Sha1
2eecffd1675c12d0e60a1e924b4dc6d1246f3a27
Base64
56CH

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7807';
console.log(char);  // Output: 砇

Java:

char c = '\u7807';
System.out.println(c);  // Output: 砇

JSON:

{"text": "\u7807"}  // Value: 砇

Python:

char = '\u7807'
print(char)  # Output: 砇

Perl:

my $char = "\x{7807}";
print $char;  # Output: 砇

PHP:

$char = "\x{7807}";
echo $char;  // Output: 砇

Ruby:

char = "\u{7807}"
puts char  # Output: 砇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007807";  /* Display: 砇 */
}

HTML Decimal:

<p>HTML decimal: &#30727;</p>  <!-- Display: 砇 -->

HTML Hexadecimal:

<p>HTML hex: &#x7807;</p>  <!-- Display: 砇 -->

URL Encoding:

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

Encodings

MD5:

f529dac3dab65cc6fbc217197e373392

SHA1:

2eecffd1675c12d0e60a1e924b4dc6d1246f3a27

Base64:

56CH