Unicode Finder

"掓" U+6393(CJK UNIFIED IDEOGRAPH-6393)

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

Programming

C
\u6393
JavaScript
\u6393
Java
\u6393
Json
\u6393
Python
\u6393
Perl
\x{6393}
PHP
\x{6393}
Ruby
\u{6393}
Rust
\u{6393}
Go
\u6393

Web

CSS
\006393
HtmlDecimal
掓
HtmlHexadecimal
掓
Url
%E6%8E%93

Code

MD5
d629ee294fc28334af1324ef60bb44ee
Sha1
8c4ffab8f7f8b79953ee4a6e00b3283d6d42afc7
Base64
5o6T

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6393';
console.log(char);  // Output: 掓

Java:

char c = '\u6393';
System.out.println(c);  // Output: 掓

JSON:

{"text": "\u6393"}  // Value: 掓

Python:

char = '\u6393'
print(char)  # Output: 掓

Perl:

my $char = "\x{6393}";
print $char;  # Output: 掓

PHP:

$char = "\x{6393}";
echo $char;  // Output: 掓

Ruby:

char = "\u{6393}"
puts char  # Output: 掓

Rust:

let c = '\u{6393}';
println!("{}", c);  // Output: 掓

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006393";  /* Display: 掓 */
}

HTML Decimal:

<p>HTML decimal: &#25491;</p>  <!-- Display: 掓 -->

HTML Hexadecimal:

<p>HTML hex: &#x6393;</p>  <!-- Display: 掓 -->

URL Encoding:

// 掓 URL encoding
https://unicodefinder.com/search.php?query=%E6%8E%93

Encodings

MD5:

d629ee294fc28334af1324ef60bb44ee

SHA1:

8c4ffab8f7f8b79953ee4a6e00b3283d6d42afc7

Base64:

5o6T