Unicode Finder

"籜" U+7C5C(CJK UNIFIED IDEOGRAPH-7C5C)

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

Programming

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

Web

CSS
\007C5C
HtmlDecimal
籜
HtmlHexadecimal
籜
Url
%E7%B1%9C

Code

MD5
a1acae6f6c7b9ca7c7469ff02a51a986
Sha1
6aa71841c5724d0aa07ec1e2c7daafc3eebaaeb6
Base64
57Gc

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7C5C';
console.log(char);  // Output: 籜

Java:

char c = '\u7C5C';
System.out.println(c);  // Output: 籜

JSON:

{"text": "\u7C5C"}  // Value: 籜

Python:

char = '\u7C5C'
print(char)  # Output: 籜

Perl:

my $char = "\x{7C5C}";
print $char;  # Output: 籜

PHP:

$char = "\x{7C5C}";
echo $char;  // Output: 籜

Ruby:

char = "\u{7C5C}"
puts char  # Output: 籜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31836;</p>  <!-- Display: 籜 -->

HTML Hexadecimal:

<p>HTML hex: &#x7C5C;</p>  <!-- Display: 籜 -->

URL Encoding:

// 籜 URL encoding
https://unicodefinder.com/search.php?query=%E7%B1%9C

Encodings

MD5:

a1acae6f6c7b9ca7c7469ff02a51a986

SHA1:

6aa71841c5724d0aa07ec1e2c7daafc3eebaaeb6

Base64:

57Gc