Unicode Finder

"簷" U+7C37(CJK UNIFIED IDEOGRAPH-7C37)

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

Programming

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

Web

CSS
\007C37
HtmlDecimal
簷
HtmlHexadecimal
簷
Url
%E7%B0%B7

Code

MD5
a210afe9b3d837dce8fb9520245336b9
Sha1
f5d4d7e29664019531639241b283e2bbfa094294
Base64
57C3

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7C37';
console.log(char);  // Output: 簷

Java:

char c = '\u7C37';
System.out.println(c);  // Output: 簷

JSON:

{"text": "\u7C37"}  // Value: 簷

Python:

char = '\u7C37'
print(char)  # Output: 簷

Perl:

my $char = "\x{7C37}";
print $char;  # Output: 簷

PHP:

$char = "\x{7C37}";
echo $char;  // Output: 簷

Ruby:

char = "\u{7C37}"
puts char  # Output: 簷

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31799;</p>  <!-- Display: 簷 -->

HTML Hexadecimal:

<p>HTML hex: &#x7C37;</p>  <!-- Display: 簷 -->

URL Encoding:

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

Encodings

MD5:

a210afe9b3d837dce8fb9520245336b9

SHA1:

f5d4d7e29664019531639241b283e2bbfa094294

Base64:

57C3