Unicode Finder

"旸" U+65F8(CJK UNIFIED IDEOGRAPH-65F8)

U+65F8
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-65F8

Programming

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

Web

CSS
\0065F8
HtmlDecimal
旸
HtmlHexadecimal
旸
Url
%E6%97%B8

Code

MD5
c965bdecb82879c9919cb1bf00762d52
Sha1
3a1a03f8cac3ee1c37945bca36984e58bed3258b
Base64
5pe4

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u65F8';
console.log(char);  // Output: 旸

Java:

char c = '\u65F8';
System.out.println(c);  // Output: 旸

JSON:

{"text": "\u65F8"}  // Value: 旸

Python:

char = '\u65F8'
print(char)  # Output: 旸

Perl:

my $char = "\x{65F8}";
print $char;  # Output: 旸

PHP:

$char = "\x{65F8}";
echo $char;  // Output: 旸

Ruby:

char = "\u{65F8}"
puts char  # Output: 旸

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26104;</p>  <!-- Display: 旸 -->

HTML Hexadecimal:

<p>HTML hex: &#x65F8;</p>  <!-- Display: 旸 -->

URL Encoding:

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

Encodings

MD5:

c965bdecb82879c9919cb1bf00762d52

SHA1:

3a1a03f8cac3ee1c37945bca36984e58bed3258b

Base64:

5pe4