Unicode Finder

"时" U+65F6(CJK UNIFIED IDEOGRAPH-65F6)

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

Programming

C
\u65F6
JavaScript
\u65F6
Java
\u65F6
Json
\u65F6
Python
\u65F6
Perl
\x{65F6}
PHP
\x{65F6}
Ruby
\u{65F6}
Rust
\u{65F6}
Go
\u65F6

Web

CSS
\0065F6
HtmlDecimal
时
HtmlHexadecimal
时
Url
%E6%97%B6

Code

MD5
609b5f0a08dae0e0a7266acbdc2cf8be
Sha1
a34801ad9c1073d622f2b790e2e0631a49dc15eb
Base64
5pe2

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u65F6';
console.log(char);  // Output: 时

Java:

char c = '\u65F6';
System.out.println(c);  // Output: 时

JSON:

{"text": "\u65F6"}  // Value: 时

Python:

char = '\u65F6'
print(char)  # Output: 时

Perl:

my $char = "\x{65F6}";
print $char;  # Output: 时

PHP:

$char = "\x{65F6}";
echo $char;  // Output: 时

Ruby:

char = "\u{65F6}"
puts char  # Output: 时

Rust:

let c = '\u{65F6}';
println!("{}", c);  // Output: 时

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0065F6";  /* Display: 时 */
}

HTML Decimal:

<p>HTML decimal: &#26102;</p>  <!-- Display: 时 -->

HTML Hexadecimal:

<p>HTML hex: &#x65F6;</p>  <!-- Display: 时 -->

URL Encoding:

// 时 URL encoding
https://unicodefinder.com/search.php?query=%E6%97%B6

Encodings

MD5:

609b5f0a08dae0e0a7266acbdc2cf8be

SHA1:

a34801ad9c1073d622f2b790e2e0631a49dc15eb

Base64:

5pe2