Unicode Finder

"瑜" U+745C(CJK UNIFIED IDEOGRAPH-745C)

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

Programming

C
\u745C
JavaScript
\u745C
Java
\u745C
Json
\u745C
Python
\u745C
Perl
\x{745C}
PHP
\x{745C}
Ruby
\u{745C}
Rust
\u{745C}
Go
\u745C

Web

CSS
\00745C
HtmlDecimal
瑜
HtmlHexadecimal
瑜
Url
%E7%91%9C

Code

MD5
8cd1e2eef6ca0b9c8c3d69578be540aa
Sha1
4f2d4002fbe34dde796a75d114b15378876d3d13
Base64
55Gc

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u745C';
console.log(char);  // Output: 瑜

Java:

char c = '\u745C';
System.out.println(c);  // Output: 瑜

JSON:

{"text": "\u745C"}  // Value: 瑜

Python:

char = '\u745C'
print(char)  # Output: 瑜

Perl:

my $char = "\x{745C}";
print $char;  # Output: 瑜

PHP:

$char = "\x{745C}";
echo $char;  // Output: 瑜

Ruby:

char = "\u{745C}"
puts char  # Output: 瑜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29788;</p>  <!-- Display: 瑜 -->

HTML Hexadecimal:

<p>HTML hex: &#x745C;</p>  <!-- Display: 瑜 -->

URL Encoding:

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

Encodings

MD5:

8cd1e2eef6ca0b9c8c3d69578be540aa

SHA1:

4f2d4002fbe34dde796a75d114b15378876d3d13

Base64:

55Gc