Unicode Finder

"簕" U+7C15(CJK UNIFIED IDEOGRAPH-7C15)

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

Programming

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

Web

CSS
\007C15
HtmlDecimal
簕
HtmlHexadecimal
簕
Url
%E7%B0%95

Code

MD5
4e3c5a2099f5ccce5ed906c292dded3d
Sha1
b752320292201d1fa46a16a381dffbcba88352c8
Base64
57CV

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7C15';
console.log(char);  // Output: 簕

Java:

char c = '\u7C15';
System.out.println(c);  // Output: 簕

JSON:

{"text": "\u7C15"}  // Value: 簕

Python:

char = '\u7C15'
print(char)  # Output: 簕

Perl:

my $char = "\x{7C15}";
print $char;  # Output: 簕

PHP:

$char = "\x{7C15}";
echo $char;  // Output: 簕

Ruby:

char = "\u{7C15}"
puts char  # Output: 簕

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31765;</p>  <!-- Display: 簕 -->

HTML Hexadecimal:

<p>HTML hex: &#x7C15;</p>  <!-- Display: 簕 -->

URL Encoding:

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

Encodings

MD5:

4e3c5a2099f5ccce5ed906c292dded3d

SHA1:

b752320292201d1fa46a16a381dffbcba88352c8

Base64:

57CV