Unicode Finder

"瑉" U+7449(CJK UNIFIED IDEOGRAPH-7449)

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

Programming

C
\u7449
JavaScript
\u7449
Java
\u7449
Json
\u7449
Python
\u7449
Perl
\x{7449}
PHP
\x{7449}
Ruby
\u{7449}
Rust
\u{7449}
Go
\u7449

Web

CSS
\007449
HtmlDecimal
瑉
HtmlHexadecimal
瑉
Url
%E7%91%89

Code

MD5
f231a2d96bb98787a4d471987a54c52c
Sha1
dcdff4888ea88c9b54b21c6ea88998af7f1b3228
Base64
55GJ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7449';
console.log(char);  // Output: 瑉

Java:

char c = '\u7449';
System.out.println(c);  // Output: 瑉

JSON:

{"text": "\u7449"}  // Value: 瑉

Python:

char = '\u7449'
print(char)  # Output: 瑉

Perl:

my $char = "\x{7449}";
print $char;  # Output: 瑉

PHP:

$char = "\x{7449}";
echo $char;  // Output: 瑉

Ruby:

char = "\u{7449}"
puts char  # Output: 瑉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007449";  /* Display: 瑉 */
}

HTML Decimal:

<p>HTML decimal: &#29769;</p>  <!-- Display: 瑉 -->

HTML Hexadecimal:

<p>HTML hex: &#x7449;</p>  <!-- Display: 瑉 -->

URL Encoding:

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

Encodings

MD5:

f231a2d96bb98787a4d471987a54c52c

SHA1:

dcdff4888ea88c9b54b21c6ea88998af7f1b3228

Base64:

55GJ