Unicode Finder

"砦" U+7826(CJK UNIFIED IDEOGRAPH-7826)

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

Programming

C
\u7826
JavaScript
\u7826
Java
\u7826
Json
\u7826
Python
\u7826
Perl
\x{7826}
PHP
\x{7826}
Ruby
\u{7826}
Rust
\u{7826}
Go
\u7826

Web

CSS
\007826
HtmlDecimal
砦
HtmlHexadecimal
砦
Url
%E7%A0%A6

Code

MD5
7c21112fb62d499db1076e3c10e1fd6c
Sha1
b727048889dc0250737e83dc155ad468f50f591e
Base64
56Cm

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7826';
console.log(char);  // Output: 砦

Java:

char c = '\u7826';
System.out.println(c);  // Output: 砦

JSON:

{"text": "\u7826"}  // Value: 砦

Python:

char = '\u7826'
print(char)  # Output: 砦

Perl:

my $char = "\x{7826}";
print $char;  # Output: 砦

PHP:

$char = "\x{7826}";
echo $char;  // Output: 砦

Ruby:

char = "\u{7826}"
puts char  # Output: 砦

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007826";  /* Display: 砦 */
}

HTML Decimal:

<p>HTML decimal: &#30758;</p>  <!-- Display: 砦 -->

HTML Hexadecimal:

<p>HTML hex: &#x7826;</p>  <!-- Display: 砦 -->

URL Encoding:

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

Encodings

MD5:

7c21112fb62d499db1076e3c10e1fd6c

SHA1:

b727048889dc0250737e83dc155ad468f50f591e

Base64:

56Cm