Unicode Finder

"鏇" U+93C7(CJK UNIFIED IDEOGRAPH-93C7)

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

Programming

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

Web

CSS
\0093C7
HtmlDecimal
鏇
HtmlHexadecimal
鏇
Url
%E9%8F%87

Code

MD5
83652d0fea717e8af5b9189dfac91abe
Sha1
013340758c419243ff60ead5fdd40a4c98f1ba15
Base64
6Y+H

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u93C7';
console.log(char);  // Output: 鏇

Java:

char c = '\u93C7';
System.out.println(c);  // Output: 鏇

JSON:

{"text": "\u93C7"}  // Value: 鏇

Python:

char = '\u93C7'
print(char)  # Output: 鏇

Perl:

my $char = "\x{93C7}";
print $char;  # Output: 鏇

PHP:

$char = "\x{93C7}";
echo $char;  // Output: 鏇

Ruby:

char = "\u{93C7}"
puts char  # Output: 鏇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37831;</p>  <!-- Display: 鏇 -->

HTML Hexadecimal:

<p>HTML hex: &#x93C7;</p>  <!-- Display: 鏇 -->

URL Encoding:

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

Encodings

MD5:

83652d0fea717e8af5b9189dfac91abe

SHA1:

013340758c419243ff60ead5fdd40a4c98f1ba15

Base64:

6Y+H