Unicode Finder

"楓" U+6953(CJK UNIFIED IDEOGRAPH-6953)

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

Programming

C
\u6953
JavaScript
\u6953
Java
\u6953
Json
\u6953
Python
\u6953
Perl
\x{6953}
PHP
\x{6953}
Ruby
\u{6953}
Rust
\u{6953}
Go
\u6953

Web

CSS
\006953
HtmlDecimal
楓
HtmlHexadecimal
楓
Url
%E6%A5%93

Code

MD5
6ed20b696fbac64ca0f678f936a880d5
Sha1
beaea610520e9d690c716fe1f8c67039f314bd62
Base64
5qWT

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6953';
console.log(char);  // Output: 楓

Java:

char c = '\u6953';
System.out.println(c);  // Output: 楓

JSON:

{"text": "\u6953"}  // Value: 楓

Python:

char = '\u6953'
print(char)  # Output: 楓

Perl:

my $char = "\x{6953}";
print $char;  # Output: 楓

PHP:

$char = "\x{6953}";
echo $char;  // Output: 楓

Ruby:

char = "\u{6953}"
puts char  # Output: 楓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006953";  /* Display: 楓 */
}

HTML Decimal:

<p>HTML decimal: &#26963;</p>  <!-- Display: 楓 -->

HTML Hexadecimal:

<p>HTML hex: &#x6953;</p>  <!-- Display: 楓 -->

URL Encoding:

// 楓 URL encoding
https://unicodefinder.com/search.php?query=%E6%A5%93

Encodings

MD5:

6ed20b696fbac64ca0f678f936a880d5

SHA1:

beaea610520e9d690c716fe1f8c67039f314bd62

Base64:

5qWT