Unicode Finder

"烈" U+70C8(CJK UNIFIED IDEOGRAPH-70C8)

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

Programming

C
\u70C8
JavaScript
\u70C8
Java
\u70C8
Json
\u70C8
Python
\u70C8
Perl
\x{70C8}
PHP
\x{70C8}
Ruby
\u{70C8}
Rust
\u{70C8}
Go
\u70C8

Web

CSS
\0070C8
HtmlDecimal
烈
HtmlHexadecimal
烈
Url
%E7%83%88

Code

MD5
6aef01cc112d43d1247169e564918ef7
Sha1
fd26899e93311e6c6767e3f71deee08cf16a54e6
Base64
54OI

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u70C8';
console.log(char);  // Output: 烈

Java:

char c = '\u70C8';
System.out.println(c);  // Output: 烈

JSON:

{"text": "\u70C8"}  // Value: 烈

Python:

char = '\u70C8'
print(char)  # Output: 烈

Perl:

my $char = "\x{70C8}";
print $char;  # Output: 烈

PHP:

$char = "\x{70C8}";
echo $char;  // Output: 烈

Ruby:

char = "\u{70C8}"
puts char  # Output: 烈

Rust:

let c = '\u{70C8}';
println!("{}", c);  // Output: 烈

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0070C8";  /* Display: 烈 */
}

HTML Decimal:

<p>HTML decimal: &#28872;</p>  <!-- Display: 烈 -->

HTML Hexadecimal:

<p>HTML hex: &#x70C8;</p>  <!-- Display: 烈 -->

URL Encoding:

// 烈 URL encoding
https://unicodefinder.com/search.php?query=%E7%83%88

Encodings

MD5:

6aef01cc112d43d1247169e564918ef7

SHA1:

fd26899e93311e6c6767e3f71deee08cf16a54e6

Base64:

54OI