Unicode Finder

"鏆" U+93C6(CJK UNIFIED IDEOGRAPH-93C6)

U+93C6
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-93C6

Programming

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

Web

CSS
\0093C6
HtmlDecimal
鏆
HtmlHexadecimal
鏆
Url
%E9%8F%86

Code

MD5
89ae910a764b5c693d61cfbc6023e6eb
Sha1
f91876ca3bae8f2efa6aa1835199d9029bcc41d5
Base64
6Y+G

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u93C6';
console.log(char);  // Output: 鏆

Java:

char c = '\u93C6';
System.out.println(c);  // Output: 鏆

JSON:

{"text": "\u93C6"}  // Value: 鏆

Python:

char = '\u93C6'
print(char)  # Output: 鏆

Perl:

my $char = "\x{93C6}";
print $char;  # Output: 鏆

PHP:

$char = "\x{93C6}";
echo $char;  // Output: 鏆

Ruby:

char = "\u{93C6}"
puts char  # Output: 鏆

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37830;</p>  <!-- Display: 鏆 -->

HTML Hexadecimal:

<p>HTML hex: &#x93C6;</p>  <!-- Display: 鏆 -->

URL Encoding:

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

Encodings

MD5:

89ae910a764b5c693d61cfbc6023e6eb

SHA1:

f91876ca3bae8f2efa6aa1835199d9029bcc41d5

Base64:

6Y+G