Unicode Finder

"縍" U+7E0D(CJK UNIFIED IDEOGRAPH-7E0D)

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

Programming

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

Web

CSS
\007E0D
HtmlDecimal
縍
HtmlHexadecimal
縍
Url
%E7%B8%8D

Code

MD5
e615af4ba8384a4cb275f083d79377dd
Sha1
65aadb6c9d0062cb66c590ce2fbaf8690743ac9a
Base64
57iN

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7E0D';
console.log(char);  // Output: 縍

Java:

char c = '\u7E0D';
System.out.println(c);  // Output: 縍

JSON:

{"text": "\u7E0D"}  // Value: 縍

Python:

char = '\u7E0D'
print(char)  # Output: 縍

Perl:

my $char = "\x{7E0D}";
print $char;  # Output: 縍

PHP:

$char = "\x{7E0D}";
echo $char;  // Output: 縍

Ruby:

char = "\u{7E0D}"
puts char  # Output: 縍

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32269;</p>  <!-- Display: 縍 -->

HTML Hexadecimal:

<p>HTML hex: &#x7E0D;</p>  <!-- Display: 縍 -->

URL Encoding:

// 縍 URL encoding
https://unicodefinder.com/search.php?query=%E7%B8%8D

Encodings

MD5:

e615af4ba8384a4cb275f083d79377dd

SHA1:

65aadb6c9d0062cb66c590ce2fbaf8690743ac9a

Base64:

57iN