Unicode Finder

"瀙" U+7019(CJK UNIFIED IDEOGRAPH-7019)

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

Programming

C
\u7019
JavaScript
\u7019
Java
\u7019
Json
\u7019
Python
\u7019
Perl
\x{7019}
PHP
\x{7019}
Ruby
\u{7019}
Rust
\u{7019}
Go
\u7019

Web

CSS
\007019
HtmlDecimal
瀙
HtmlHexadecimal
瀙
Url
%E7%80%99

Code

MD5
89ee2adb709cb4d6308ba9acf0c60227
Sha1
8f876209611290496351adf53b22789049747658
Base64
54CZ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7019';
console.log(char);  // Output: 瀙

Java:

char c = '\u7019';
System.out.println(c);  // Output: 瀙

JSON:

{"text": "\u7019"}  // Value: 瀙

Python:

char = '\u7019'
print(char)  # Output: 瀙

Perl:

my $char = "\x{7019}";
print $char;  # Output: 瀙

PHP:

$char = "\x{7019}";
echo $char;  // Output: 瀙

Ruby:

char = "\u{7019}"
puts char  # Output: 瀙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007019";  /* Display: 瀙 */
}

HTML Decimal:

<p>HTML decimal: &#28697;</p>  <!-- Display: 瀙 -->

HTML Hexadecimal:

<p>HTML hex: &#x7019;</p>  <!-- Display: 瀙 -->

URL Encoding:

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

Encodings

MD5:

89ee2adb709cb4d6308ba9acf0c60227

SHA1:

8f876209611290496351adf53b22789049747658

Base64:

54CZ