Unicode Finder

"瀸" U+7038(CJK UNIFIED IDEOGRAPH-7038)

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

Programming

C
\u7038
JavaScript
\u7038
Java
\u7038
Json
\u7038
Python
\u7038
Perl
\x{7038}
PHP
\x{7038}
Ruby
\u{7038}
Rust
\u{7038}
Go
\u7038

Web

CSS
\007038
HtmlDecimal
瀸
HtmlHexadecimal
瀸
Url
%E7%80%B8

Code

MD5
f56b55d219ab079b7674209f28d189ba
Sha1
33edb5c8d780c4b20158e09e3fec4c1861f7f6fc
Base64
54C4

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7038';
console.log(char);  // Output: 瀸

Java:

char c = '\u7038';
System.out.println(c);  // Output: 瀸

JSON:

{"text": "\u7038"}  // Value: 瀸

Python:

char = '\u7038'
print(char)  # Output: 瀸

Perl:

my $char = "\x{7038}";
print $char;  # Output: 瀸

PHP:

$char = "\x{7038}";
echo $char;  // Output: 瀸

Ruby:

char = "\u{7038}"
puts char  # Output: 瀸

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007038";  /* Display: 瀸 */
}

HTML Decimal:

<p>HTML decimal: &#28728;</p>  <!-- Display: 瀸 -->

HTML Hexadecimal:

<p>HTML hex: &#x7038;</p>  <!-- Display: 瀸 -->

URL Encoding:

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

Encodings

MD5:

f56b55d219ab079b7674209f28d189ba

SHA1:

33edb5c8d780c4b20158e09e3fec4c1861f7f6fc

Base64:

54C4