Unicode Finder

"鏌" U+93CC(CJK UNIFIED IDEOGRAPH-93CC)

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

Programming

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

Web

CSS
\0093CC
HtmlDecimal
鏌
HtmlHexadecimal
鏌
Url
%E9%8F%8C

Code

MD5
50a071243c69b583ee8672364f1bd971
Sha1
a47a767f54629cb557518526b203a19c1ce08fee
Base64
6Y+M

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u93CC';
console.log(char);  // Output: 鏌

Java:

char c = '\u93CC';
System.out.println(c);  // Output: 鏌

JSON:

{"text": "\u93CC"}  // Value: 鏌

Python:

char = '\u93CC'
print(char)  # Output: 鏌

Perl:

my $char = "\x{93CC}";
print $char;  # Output: 鏌

PHP:

$char = "\x{93CC}";
echo $char;  // Output: 鏌

Ruby:

char = "\u{93CC}"
puts char  # Output: 鏌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37836;</p>  <!-- Display: 鏌 -->

HTML Hexadecimal:

<p>HTML hex: &#x93CC;</p>  <!-- Display: 鏌 -->

URL Encoding:

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

Encodings

MD5:

50a071243c69b583ee8672364f1bd971

SHA1:

a47a767f54629cb557518526b203a19c1ce08fee

Base64:

6Y+M