Unicode Finder

"簖" U+7C16(CJK UNIFIED IDEOGRAPH-7C16)

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

Programming

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

Web

CSS
\007C16
HtmlDecimal
簖
HtmlHexadecimal
簖
Url
%E7%B0%96

Code

MD5
d6fc42ce71ee4f4abe10360dc9b2806c
Sha1
7bc3981b8edd8a2060510451b47cdd1c701e3c17
Base64
57CW

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7C16';
console.log(char);  // Output: 簖

Java:

char c = '\u7C16';
System.out.println(c);  // Output: 簖

JSON:

{"text": "\u7C16"}  // Value: 簖

Python:

char = '\u7C16'
print(char)  # Output: 簖

Perl:

my $char = "\x{7C16}";
print $char;  # Output: 簖

PHP:

$char = "\x{7C16}";
echo $char;  // Output: 簖

Ruby:

char = "\u{7C16}"
puts char  # Output: 簖

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31766;</p>  <!-- Display: 簖 -->

HTML Hexadecimal:

<p>HTML hex: &#x7C16;</p>  <!-- Display: 簖 -->

URL Encoding:

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

Encodings

MD5:

d6fc42ce71ee4f4abe10360dc9b2806c

SHA1:

7bc3981b8edd8a2060510451b47cdd1c701e3c17

Base64:

57CW