Unicode Finder

"瑌" U+744C(CJK UNIFIED IDEOGRAPH-744C)

U+744C
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-744C

Programming

C
\u744C
JavaScript
\u744C
Java
\u744C
Json
\u744C
Python
\u744C
Perl
\x{744C}
PHP
\x{744C}
Ruby
\u{744C}
Rust
\u{744C}
Go
\u744C

Web

CSS
\00744C
HtmlDecimal
瑌
HtmlHexadecimal
瑌
Url
%E7%91%8C

Code

MD5
7fbf3a5255e8b9f7f3e7544a45e3a84c
Sha1
085e1280dc81b38e08116dc462bc96a8c9428f9f
Base64
55GM

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u744C';
console.log(char);  // Output: 瑌

Java:

char c = '\u744C';
System.out.println(c);  // Output: 瑌

JSON:

{"text": "\u744C"}  // Value: 瑌

Python:

char = '\u744C'
print(char)  # Output: 瑌

Perl:

my $char = "\x{744C}";
print $char;  # Output: 瑌

PHP:

$char = "\x{744C}";
echo $char;  // Output: 瑌

Ruby:

char = "\u{744C}"
puts char  # Output: 瑌

Rust:

let c = '\u{744C}';
println!("{}", c);  // Output: 瑌

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00744C";  /* Display: 瑌 */
}

HTML Decimal:

<p>HTML decimal: &#29772;</p>  <!-- Display: 瑌 -->

HTML Hexadecimal:

<p>HTML hex: &#x744C;</p>  <!-- Display: 瑌 -->

URL Encoding:

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

Encodings

MD5:

7fbf3a5255e8b9f7f3e7544a45e3a84c

SHA1:

085e1280dc81b38e08116dc462bc96a8c9428f9f

Base64:

55GM