Unicode Finder

"瓬" U+74EC(CJK UNIFIED IDEOGRAPH-74EC)

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

Programming

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

Web

CSS
\0074EC
HtmlDecimal
瓬
HtmlHexadecimal
瓬
Url
%E7%93%AC

Code

MD5
e557dd7f01fd365146a569c98bfbd02e
Sha1
30fc8488859349c6e133a9f0fe5fd41fcf6adfc2
Base64
55Os

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u74EC';
console.log(char);  // Output: 瓬

Java:

char c = '\u74EC';
System.out.println(c);  // Output: 瓬

JSON:

{"text": "\u74EC"}  // Value: 瓬

Python:

char = '\u74EC'
print(char)  # Output: 瓬

Perl:

my $char = "\x{74EC}";
print $char;  # Output: 瓬

PHP:

$char = "\x{74EC}";
echo $char;  // Output: 瓬

Ruby:

char = "\u{74EC}"
puts char  # Output: 瓬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29932;</p>  <!-- Display: 瓬 -->

HTML Hexadecimal:

<p>HTML hex: &#x74EC;</p>  <!-- Display: 瓬 -->

URL Encoding:

// 瓬 URL encoding
https://unicodefinder.com/search.php?query=%E7%93%AC

Encodings

MD5:

e557dd7f01fd365146a569c98bfbd02e

SHA1:

30fc8488859349c6e133a9f0fe5fd41fcf6adfc2

Base64:

55Os