Unicode Finder

"縕" U+7E15(CJK UNIFIED IDEOGRAPH-7E15)

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

Programming

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

Web

CSS
\007E15
HtmlDecimal
縕
HtmlHexadecimal
縕
Url
%E7%B8%95

Code

MD5
12ff5fb107486abb37a6034783fa622f
Sha1
d2932e6e3ac91d201543b207dcdbdc4e0072d9e9
Base64
57iV

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7E15';
console.log(char);  // Output: 縕

Java:

char c = '\u7E15';
System.out.println(c);  // Output: 縕

JSON:

{"text": "\u7E15"}  // Value: 縕

Python:

char = '\u7E15'
print(char)  # Output: 縕

Perl:

my $char = "\x{7E15}";
print $char;  # Output: 縕

PHP:

$char = "\x{7E15}";
echo $char;  // Output: 縕

Ruby:

char = "\u{7E15}"
puts char  # Output: 縕

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32277;</p>  <!-- Display: 縕 -->

HTML Hexadecimal:

<p>HTML hex: &#x7E15;</p>  <!-- Display: 縕 -->

URL Encoding:

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

Encodings

MD5:

12ff5fb107486abb37a6034783fa622f

SHA1:

d2932e6e3ac91d201543b207dcdbdc4e0072d9e9

Base64:

57iV