Unicode Finder

"潺" U+6F7A(CJK UNIFIED IDEOGRAPH-6F7A)

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

Programming

C
\u6F7A
JavaScript
\u6F7A
Java
\u6F7A
Json
\u6F7A
Python
\u6F7A
Perl
\x{6F7A}
PHP
\x{6F7A}
Ruby
\u{6F7A}
Rust
\u{6F7A}
Go
\u6F7A

Web

CSS
\006F7A
HtmlDecimal
潺
HtmlHexadecimal
潺
Url
%E6%BD%BA

Code

MD5
db3d03d2d2861efafc1085bb6cdf6071
Sha1
2ca23f740dad64cb1afc22f2d9696e471220651c
Base64
5r26

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6F7A';
console.log(char);  // Output: 潺

Java:

char c = '\u6F7A';
System.out.println(c);  // Output: 潺

JSON:

{"text": "\u6F7A"}  // Value: 潺

Python:

char = '\u6F7A'
print(char)  # Output: 潺

Perl:

my $char = "\x{6F7A}";
print $char;  # Output: 潺

PHP:

$char = "\x{6F7A}";
echo $char;  // Output: 潺

Ruby:

char = "\u{6F7A}"
puts char  # Output: 潺

Rust:

let c = '\u{6F7A}';
println!("{}", c);  // Output: 潺

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006F7A";  /* Display: 潺 */
}

HTML Decimal:

<p>HTML decimal: &#28538;</p>  <!-- Display: 潺 -->

HTML Hexadecimal:

<p>HTML hex: &#x6F7A;</p>  <!-- Display: 潺 -->

URL Encoding:

// 潺 URL encoding
https://unicodefinder.com/search.php?query=%E6%BD%BA

Encodings

MD5:

db3d03d2d2861efafc1085bb6cdf6071

SHA1:

2ca23f740dad64cb1afc22f2d9696e471220651c

Base64:

5r26