Unicode Finder

"砈" U+7808(CJK UNIFIED IDEOGRAPH-7808)

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

Programming

C
\u7808
JavaScript
\u7808
Java
\u7808
Json
\u7808
Python
\u7808
Perl
\x{7808}
PHP
\x{7808}
Ruby
\u{7808}
Rust
\u{7808}
Go
\u7808

Web

CSS
\007808
HtmlDecimal
砈
HtmlHexadecimal
砈
Url
%E7%A0%88

Code

MD5
f73434ca87682481de900df88d805802
Sha1
adc3a021608c968cbac8cffbb2484232dcf362c7
Base64
56CI

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7808';
console.log(char);  // Output: 砈

Java:

char c = '\u7808';
System.out.println(c);  // Output: 砈

JSON:

{"text": "\u7808"}  // Value: 砈

Python:

char = '\u7808'
print(char)  # Output: 砈

Perl:

my $char = "\x{7808}";
print $char;  # Output: 砈

PHP:

$char = "\x{7808}";
echo $char;  // Output: 砈

Ruby:

char = "\u{7808}"
puts char  # Output: 砈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007808";  /* Display: 砈 */
}

HTML Decimal:

<p>HTML decimal: &#30728;</p>  <!-- Display: 砈 -->

HTML Hexadecimal:

<p>HTML hex: &#x7808;</p>  <!-- Display: 砈 -->

URL Encoding:

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

Encodings

MD5:

f73434ca87682481de900df88d805802

SHA1:

adc3a021608c968cbac8cffbb2484232dcf362c7

Base64:

56CI