Unicode Finder

"瑣" U+7463(CJK UNIFIED IDEOGRAPH-7463)

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

Programming

C
\u7463
JavaScript
\u7463
Java
\u7463
Json
\u7463
Python
\u7463
Perl
\x{7463}
PHP
\x{7463}
Ruby
\u{7463}
Rust
\u{7463}
Go
\u7463

Web

CSS
\007463
HtmlDecimal
瑣
HtmlHexadecimal
瑣
Url
%E7%91%A3

Code

MD5
5bf6e64ba1f074082afb4e3dae02762d
Sha1
58dc9ffa7100ee76e137c7d59e891f39685bfb74
Base64
55Gj

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7463';
console.log(char);  // Output: 瑣

Java:

char c = '\u7463';
System.out.println(c);  // Output: 瑣

JSON:

{"text": "\u7463"}  // Value: 瑣

Python:

char = '\u7463'
print(char)  # Output: 瑣

Perl:

my $char = "\x{7463}";
print $char;  # Output: 瑣

PHP:

$char = "\x{7463}";
echo $char;  // Output: 瑣

Ruby:

char = "\u{7463}"
puts char  # Output: 瑣

Rust:

let c = '\u{7463}';
println!("{}", c);  // Output: 瑣

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007463";  /* Display: 瑣 */
}

HTML Decimal:

<p>HTML decimal: &#29795;</p>  <!-- Display: 瑣 -->

HTML Hexadecimal:

<p>HTML hex: &#x7463;</p>  <!-- Display: 瑣 -->

URL Encoding:

// 瑣 URL encoding
https://unicodefinder.com/search.php?query=%E7%91%A3

Encodings

MD5:

5bf6e64ba1f074082afb4e3dae02762d

SHA1:

58dc9ffa7100ee76e137c7d59e891f39685bfb74

Base64:

55Gj