Unicode Finder

"鏁" U+93C1(CJK UNIFIED IDEOGRAPH-93C1)

U+93C1
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-93C1

Programming

C
\u93C1
JavaScript
\u93C1
Java
\u93C1
Json
\u93C1
Python
\u93C1
Perl
\x{93C1}
PHP
\x{93C1}
Ruby
\u{93C1}
Rust
\u{93C1}
Go
\u93C1

Web

CSS
\0093C1
HtmlDecimal
鏁
HtmlHexadecimal
鏁
Url
%E9%8F%81

Code

MD5
18ac2432a14a577eca92ebeb8deab50b
Sha1
33b16501becb7dfdd462d533f79018b2239be8bd
Base64
6Y+B

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u93C1';
console.log(char);  // Output: 鏁

Java:

char c = '\u93C1';
System.out.println(c);  // Output: 鏁

JSON:

{"text": "\u93C1"}  // Value: 鏁

Python:

char = '\u93C1'
print(char)  # Output: 鏁

Perl:

my $char = "\x{93C1}";
print $char;  # Output: 鏁

PHP:

$char = "\x{93C1}";
echo $char;  // Output: 鏁

Ruby:

char = "\u{93C1}"
puts char  # Output: 鏁

Rust:

let c = '\u{93C1}';
println!("{}", c);  // Output: 鏁

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0093C1";  /* Display: 鏁 */
}

HTML Decimal:

<p>HTML decimal: &#37825;</p>  <!-- Display: 鏁 -->

HTML Hexadecimal:

<p>HTML hex: &#x93C1;</p>  <!-- Display: 鏁 -->

URL Encoding:

// 鏁 URL encoding
https://unicodefinder.com/search.php?query=%E9%8F%81

Encodings

MD5:

18ac2432a14a577eca92ebeb8deab50b

SHA1:

33b16501becb7dfdd462d533f79018b2239be8bd

Base64:

6Y+B