Unicode Finder

"珈" U+73C8(CJK UNIFIED IDEOGRAPH-73C8)

U+73C8
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-73C8

Programming

C
\u73C8
JavaScript
\u73C8
Java
\u73C8
Json
\u73C8
Python
\u73C8
Perl
\x{73C8}
PHP
\x{73C8}
Ruby
\u{73C8}
Rust
\u{73C8}
Go
\u73C8

Web

CSS
\0073C8
HtmlDecimal
珈
HtmlHexadecimal
珈
Url
%E7%8F%88

Code

MD5
292239a3988e9f759e6cc03dcdcf1bb2
Sha1
eb1f634715580bb1f6c7e8fcd331a5ca6dcf16d6
Base64
54+I

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u73C8';
console.log(char);  // Output: 珈

Java:

char c = '\u73C8';
System.out.println(c);  // Output: 珈

JSON:

{"text": "\u73C8"}  // Value: 珈

Python:

char = '\u73C8'
print(char)  # Output: 珈

Perl:

my $char = "\x{73C8}";
print $char;  # Output: 珈

PHP:

$char = "\x{73C8}";
echo $char;  // Output: 珈

Ruby:

char = "\u{73C8}"
puts char  # Output: 珈

Rust:

let c = '\u{73C8}';
println!("{}", c);  // Output: 珈

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0073C8";  /* Display: 珈 */
}

HTML Decimal:

<p>HTML decimal: &#29640;</p>  <!-- Display: 珈 -->

HTML Hexadecimal:

<p>HTML hex: &#x73C8;</p>  <!-- Display: 珈 -->

URL Encoding:

// 珈 URL encoding
https://unicodefinder.com/search.php?query=%E7%8F%88

Encodings

MD5:

292239a3988e9f759e6cc03dcdcf1bb2

SHA1:

eb1f634715580bb1f6c7e8fcd331a5ca6dcf16d6

Base64:

54+I