Unicode Finder

"潨" U+6F68(CJK UNIFIED IDEOGRAPH-6F68)

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

Programming

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

Web

CSS
\006F68
HtmlDecimal
潨
HtmlHexadecimal
潨
Url
%E6%BD%A8

Code

MD5
858e956bdec2771b4acf22a7b59357c4
Sha1
531809978fcbafa3b422fd4e198a4008194e46be
Base64
5r2o

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6F68';
console.log(char);  // Output: 潨

Java:

char c = '\u6F68';
System.out.println(c);  // Output: 潨

JSON:

{"text": "\u6F68"}  // Value: 潨

Python:

char = '\u6F68'
print(char)  # Output: 潨

Perl:

my $char = "\x{6F68}";
print $char;  # Output: 潨

PHP:

$char = "\x{6F68}";
echo $char;  // Output: 潨

Ruby:

char = "\u{6F68}"
puts char  # Output: 潨

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28520;</p>  <!-- Display: 潨 -->

HTML Hexadecimal:

<p>HTML hex: &#x6F68;</p>  <!-- Display: 潨 -->

URL Encoding:

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

Encodings

MD5:

858e956bdec2771b4acf22a7b59357c4

SHA1:

531809978fcbafa3b422fd4e198a4008194e46be

Base64:

5r2o