Unicode Finder

"折" U+6298(CJK UNIFIED IDEOGRAPH-6298)

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

Programming

C
\u6298
JavaScript
\u6298
Java
\u6298
Json
\u6298
Python
\u6298
Perl
\x{6298}
PHP
\x{6298}
Ruby
\u{6298}
Rust
\u{6298}
Go
\u6298

Web

CSS
\006298
HtmlDecimal
折
HtmlHexadecimal
折
Url
%E6%8A%98

Code

MD5
96c015eb6fda2cab86ef5cc3554c6a4f
Sha1
6d7aac9afc3e488fbad91d5e22f6fc85d86d8af6
Base64
5oqY

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6298';
console.log(char);  // Output: 折

Java:

char c = '\u6298';
System.out.println(c);  // Output: 折

JSON:

{"text": "\u6298"}  // Value: 折

Python:

char = '\u6298'
print(char)  # Output: 折

Perl:

my $char = "\x{6298}";
print $char;  # Output: 折

PHP:

$char = "\x{6298}";
echo $char;  // Output: 折

Ruby:

char = "\u{6298}"
puts char  # Output: 折

Rust:

let c = '\u{6298}';
println!("{}", c);  // Output: 折

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006298";  /* Display: 折 */
}

HTML Decimal:

<p>HTML decimal: &#25240;</p>  <!-- Display: 折 -->

HTML Hexadecimal:

<p>HTML hex: &#x6298;</p>  <!-- Display: 折 -->

URL Encoding:

// 折 URL encoding
https://unicodefinder.com/search.php?query=%E6%8A%98

Encodings

MD5:

96c015eb6fda2cab86ef5cc3554c6a4f

SHA1:

6d7aac9afc3e488fbad91d5e22f6fc85d86d8af6

Base64:

5oqY