Unicode Finder

"縀" U+7E00(CJK UNIFIED IDEOGRAPH-7E00)

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

Programming

C
\u7E00
JavaScript
\u7E00
Java
\u7E00
Json
\u7E00
Python
\u7E00
Perl
\x{7E00}
PHP
\x{7E00}
Ruby
\u{7E00}
Rust
\u{7E00}
Go
\u7E00

Web

CSS
\007E00
HtmlDecimal
縀
HtmlHexadecimal
縀
Url
%E7%B8%80

Code

MD5
89859507b0184c6297577d5ef0009df8
Sha1
f0d747e8386e91b427cd3026e4c9fccba1900e2c
Base64
57iA

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7E00';
console.log(char);  // Output: 縀

Java:

char c = '\u7E00';
System.out.println(c);  // Output: 縀

JSON:

{"text": "\u7E00"}  // Value: 縀

Python:

char = '\u7E00'
print(char)  # Output: 縀

Perl:

my $char = "\x{7E00}";
print $char;  # Output: 縀

PHP:

$char = "\x{7E00}";
echo $char;  // Output: 縀

Ruby:

char = "\u{7E00}"
puts char  # Output: 縀

Rust:

let c = '\u{7E00}';
println!("{}", c);  // Output: 縀

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007E00";  /* Display: 縀 */
}

HTML Decimal:

<p>HTML decimal: &#32256;</p>  <!-- Display: 縀 -->

HTML Hexadecimal:

<p>HTML hex: &#x7E00;</p>  <!-- Display: 縀 -->

URL Encoding:

// 縀 URL encoding
https://unicodefinder.com/search.php?query=%E7%B8%80

Encodings

MD5:

89859507b0184c6297577d5ef0009df8

SHA1:

f0d747e8386e91b427cd3026e4c9fccba1900e2c

Base64:

57iA