Unicode Finder

"瀘" U+7018(CJK UNIFIED IDEOGRAPH-7018)

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

Programming

C
\u7018
JavaScript
\u7018
Java
\u7018
Json
\u7018
Python
\u7018
Perl
\x{7018}
PHP
\x{7018}
Ruby
\u{7018}
Rust
\u{7018}
Go
\u7018

Web

CSS
\007018
HtmlDecimal
瀘
HtmlHexadecimal
瀘
Url
%E7%80%98

Code

MD5
77aff24beaf65cc27d28abb32cf46dd4
Sha1
72af181297dfa637d03905bfc9ea24df38c9335c
Base64
54CY

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7018';
console.log(char);  // Output: 瀘

Java:

char c = '\u7018';
System.out.println(c);  // Output: 瀘

JSON:

{"text": "\u7018"}  // Value: 瀘

Python:

char = '\u7018'
print(char)  # Output: 瀘

Perl:

my $char = "\x{7018}";
print $char;  # Output: 瀘

PHP:

$char = "\x{7018}";
echo $char;  // Output: 瀘

Ruby:

char = "\u{7018}"
puts char  # Output: 瀘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007018";  /* Display: 瀘 */
}

HTML Decimal:

<p>HTML decimal: &#28696;</p>  <!-- Display: 瀘 -->

HTML Hexadecimal:

<p>HTML hex: &#x7018;</p>  <!-- Display: 瀘 -->

URL Encoding:

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

Encodings

MD5:

77aff24beaf65cc27d28abb32cf46dd4

SHA1:

72af181297dfa637d03905bfc9ea24df38c9335c

Base64:

54CY