Unicode Finder

"潸" U+6F78(CJK UNIFIED IDEOGRAPH-6F78)

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

Programming

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

Web

CSS
\006F78
HtmlDecimal
潸
HtmlHexadecimal
潸
Url
%E6%BD%B8

Code

MD5
75348520d80d2d2d23c4007c36a584fc
Sha1
d2e183056e9651e74b10b466d29cf24c7fdacf7c
Base64
5r24

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6F78';
console.log(char);  // Output: 潸

Java:

char c = '\u6F78';
System.out.println(c);  // Output: 潸

JSON:

{"text": "\u6F78"}  // Value: 潸

Python:

char = '\u6F78'
print(char)  # Output: 潸

Perl:

my $char = "\x{6F78}";
print $char;  # Output: 潸

PHP:

$char = "\x{6F78}";
echo $char;  // Output: 潸

Ruby:

char = "\u{6F78}"
puts char  # Output: 潸

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28536;</p>  <!-- Display: 潸 -->

HTML Hexadecimal:

<p>HTML hex: &#x6F78;</p>  <!-- Display: 潸 -->

URL Encoding:

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

Encodings

MD5:

75348520d80d2d2d23c4007c36a584fc

SHA1:

d2e183056e9651e74b10b466d29cf24c7fdacf7c

Base64:

5r24