Unicode Finder

"瓌" U+74CC(CJK UNIFIED IDEOGRAPH-74CC)

U+74CC
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-74CC

Programming

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

Web

CSS
\0074CC
HtmlDecimal
瓌
HtmlHexadecimal
瓌
Url
%E7%93%8C

Code

MD5
2506cd369c7d68dc7d959f29f757175c
Sha1
8923d20a399603d55d58242f7150d6a73edcd4f5
Base64
55OM

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u74CC';
console.log(char);  // Output: 瓌

Java:

char c = '\u74CC';
System.out.println(c);  // Output: 瓌

JSON:

{"text": "\u74CC"}  // Value: 瓌

Python:

char = '\u74CC'
print(char)  # Output: 瓌

Perl:

my $char = "\x{74CC}";
print $char;  # Output: 瓌

PHP:

$char = "\x{74CC}";
echo $char;  // Output: 瓌

Ruby:

char = "\u{74CC}"
puts char  # Output: 瓌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29900;</p>  <!-- Display: 瓌 -->

HTML Hexadecimal:

<p>HTML hex: &#x74CC;</p>  <!-- Display: 瓌 -->

URL Encoding:

// 瓌 URL encoding
https://unicodefinder.com/search.php?query=%E7%93%8C

Encodings

MD5:

2506cd369c7d68dc7d959f29f757175c

SHA1:

8923d20a399603d55d58242f7150d6a73edcd4f5

Base64:

55OM