Unicode Finder

"旭" U+65ED(CJK UNIFIED IDEOGRAPH-65ED)

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

Programming

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

Web

CSS
\0065ED
HtmlDecimal
旭
HtmlHexadecimal
旭
Url
%E6%97%AD

Code

MD5
40202d11623448d8a9f5f533103e0308
Sha1
a89140f7f8e1ad9ff614e3565b2c3af5a17ec461
Base64
5pet

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u65ED';
console.log(char);  // Output: 旭

Java:

char c = '\u65ED';
System.out.println(c);  // Output: 旭

JSON:

{"text": "\u65ED"}  // Value: 旭

Python:

char = '\u65ED'
print(char)  # Output: 旭

Perl:

my $char = "\x{65ED}";
print $char;  # Output: 旭

PHP:

$char = "\x{65ED}";
echo $char;  // Output: 旭

Ruby:

char = "\u{65ED}"
puts char  # Output: 旭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26093;</p>  <!-- Display: 旭 -->

HTML Hexadecimal:

<p>HTML hex: &#x65ED;</p>  <!-- Display: 旭 -->

URL Encoding:

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

Encodings

MD5:

40202d11623448d8a9f5f533103e0308

SHA1:

a89140f7f8e1ad9ff614e3565b2c3af5a17ec461

Base64:

5pet