Unicode Finder

"潝" U+6F5D(CJK UNIFIED IDEOGRAPH-6F5D)

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

Programming

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

Web

CSS
\006F5D
HtmlDecimal
潝
HtmlHexadecimal
潝
Url
%E6%BD%9D

Code

MD5
85b02f73ebe0b7532312913be8212ddb
Sha1
a4709f3c35e21bb1d6d7346af41c461110921d8c
Base64
5r2d

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6F5D';
console.log(char);  // Output: 潝

Java:

char c = '\u6F5D';
System.out.println(c);  // Output: 潝

JSON:

{"text": "\u6F5D"}  // Value: 潝

Python:

char = '\u6F5D'
print(char)  # Output: 潝

Perl:

my $char = "\x{6F5D}";
print $char;  # Output: 潝

PHP:

$char = "\x{6F5D}";
echo $char;  // Output: 潝

Ruby:

char = "\u{6F5D}"
puts char  # Output: 潝

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28509;</p>  <!-- Display: 潝 -->

HTML Hexadecimal:

<p>HTML hex: &#x6F5D;</p>  <!-- Display: 潝 -->

URL Encoding:

// 潝 URL encoding
https://unicodefinder.com/search.php?query=%E6%BD%9D

Encodings

MD5:

85b02f73ebe0b7532312913be8212ddb

SHA1:

a4709f3c35e21bb1d6d7346af41c461110921d8c

Base64:

5r2d