Unicode Finder

"簶" U+7C36(CJK UNIFIED IDEOGRAPH-7C36)

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

Programming

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

Web

CSS
\007C36
HtmlDecimal
簶
HtmlHexadecimal
簶
Url
%E7%B0%B6

Code

MD5
ec30860b82f612105834c97c4dcd8554
Sha1
4575f79d9184fe8e6dd4a87e72b449ce53a7efe5
Base64
57C2

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7C36';
console.log(char);  // Output: 簶

Java:

char c = '\u7C36';
System.out.println(c);  // Output: 簶

JSON:

{"text": "\u7C36"}  // Value: 簶

Python:

char = '\u7C36'
print(char)  # Output: 簶

Perl:

my $char = "\x{7C36}";
print $char;  # Output: 簶

PHP:

$char = "\x{7C36}";
echo $char;  // Output: 簶

Ruby:

char = "\u{7C36}"
puts char  # Output: 簶

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31798;</p>  <!-- Display: 簶 -->

HTML Hexadecimal:

<p>HTML hex: &#x7C36;</p>  <!-- Display: 簶 -->

URL Encoding:

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

Encodings

MD5:

ec30860b82f612105834c97c4dcd8554

SHA1:

4575f79d9184fe8e6dd4a87e72b449ce53a7efe5

Base64:

57C2