Unicode Finder

"籅" U+7C45(CJK UNIFIED IDEOGRAPH-7C45)

U+7C45
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-7C45

Programming

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

Web

CSS
\007C45
HtmlDecimal
籅
HtmlHexadecimal
籅
Url
%E7%B1%85

Code

MD5
bbb94de8218922ce8b2c589cc62b5be1
Sha1
95707f334b20a835f3d9714cfc4daa25e520f19f
Base64
57GF

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7C45';
console.log(char);  // Output: 籅

Java:

char c = '\u7C45';
System.out.println(c);  // Output: 籅

JSON:

{"text": "\u7C45"}  // Value: 籅

Python:

char = '\u7C45'
print(char)  # Output: 籅

Perl:

my $char = "\x{7C45}";
print $char;  # Output: 籅

PHP:

$char = "\x{7C45}";
echo $char;  // Output: 籅

Ruby:

char = "\u{7C45}"
puts char  # Output: 籅

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31813;</p>  <!-- Display: 籅 -->

HTML Hexadecimal:

<p>HTML hex: &#x7C45;</p>  <!-- Display: 籅 -->

URL Encoding:

// 籅 URL encoding
https://unicodefinder.com/search.php?query=%E7%B1%85

Encodings

MD5:

bbb94de8218922ce8b2c589cc62b5be1

SHA1:

95707f334b20a835f3d9714cfc4daa25e520f19f

Base64:

57GF