Unicode Finder

"鏉" U+93C9(CJK UNIFIED IDEOGRAPH-93C9)

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

Programming

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

Web

CSS
\0093C9
HtmlDecimal
鏉
HtmlHexadecimal
鏉
Url
%E9%8F%89

Code

MD5
f51880a258498ab42ad3f357d810eade
Sha1
8275748df5ed9c4f5affb0967647adcd17a065db
Base64
6Y+J

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u93C9';
console.log(char);  // Output: 鏉

Java:

char c = '\u93C9';
System.out.println(c);  // Output: 鏉

JSON:

{"text": "\u93C9"}  // Value: 鏉

Python:

char = '\u93C9'
print(char)  # Output: 鏉

Perl:

my $char = "\x{93C9}";
print $char;  # Output: 鏉

PHP:

$char = "\x{93C9}";
echo $char;  // Output: 鏉

Ruby:

char = "\u{93C9}"
puts char  # Output: 鏉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37833;</p>  <!-- Display: 鏉 -->

HTML Hexadecimal:

<p>HTML hex: &#x93C9;</p>  <!-- Display: 鏉 -->

URL Encoding:

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

Encodings

MD5:

f51880a258498ab42ad3f357d810eade

SHA1:

8275748df5ed9c4f5affb0967647adcd17a065db

Base64:

6Y+J