Unicode Finder

"瀩" U+7029(CJK UNIFIED IDEOGRAPH-7029)

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

Programming

C
\u7029
JavaScript
\u7029
Java
\u7029
Json
\u7029
Python
\u7029
Perl
\x{7029}
PHP
\x{7029}
Ruby
\u{7029}
Rust
\u{7029}
Go
\u7029

Web

CSS
\007029
HtmlDecimal
瀩
HtmlHexadecimal
瀩
Url
%E7%80%A9

Code

MD5
e7d1c0894a3a7fd7b230eef7d92a0ee0
Sha1
1dce9b44d92947e156093190cc39402c4163c518
Base64
54Cp

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7029';
console.log(char);  // Output: 瀩

Java:

char c = '\u7029';
System.out.println(c);  // Output: 瀩

JSON:

{"text": "\u7029"}  // Value: 瀩

Python:

char = '\u7029'
print(char)  # Output: 瀩

Perl:

my $char = "\x{7029}";
print $char;  # Output: 瀩

PHP:

$char = "\x{7029}";
echo $char;  // Output: 瀩

Ruby:

char = "\u{7029}"
puts char  # Output: 瀩

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007029";  /* Display: 瀩 */
}

HTML Decimal:

<p>HTML decimal: &#28713;</p>  <!-- Display: 瀩 -->

HTML Hexadecimal:

<p>HTML hex: &#x7029;</p>  <!-- Display: 瀩 -->

URL Encoding:

// 瀩 URL encoding
https://unicodefinder.com/search.php?query=%E7%80%A9

Encodings

MD5:

e7d1c0894a3a7fd7b230eef7d92a0ee0

SHA1:

1dce9b44d92947e156093190cc39402c4163c518

Base64:

54Cp