Unicode Finder

"烇" U+70C7(CJK UNIFIED IDEOGRAPH-70C7)

U+70C7
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-70C7

Programming

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

Web

CSS
\0070C7
HtmlDecimal
烇
HtmlHexadecimal
烇
Url
%E7%83%87

Code

MD5
c569fcb534d4960ae9a551b45a8353b6
Sha1
a3a856e2d0ba76e90820651d7d440a3e9d90678b
Base64
54OH

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u70C7';
console.log(char);  // Output: 烇

Java:

char c = '\u70C7';
System.out.println(c);  // Output: 烇

JSON:

{"text": "\u70C7"}  // Value: 烇

Python:

char = '\u70C7'
print(char)  # Output: 烇

Perl:

my $char = "\x{70C7}";
print $char;  # Output: 烇

PHP:

$char = "\x{70C7}";
echo $char;  // Output: 烇

Ruby:

char = "\u{70C7}"
puts char  # Output: 烇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28871;</p>  <!-- Display: 烇 -->

HTML Hexadecimal:

<p>HTML hex: &#x70C7;</p>  <!-- Display: 烇 -->

URL Encoding:

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

Encodings

MD5:

c569fcb534d4960ae9a551b45a8353b6

SHA1:

a3a856e2d0ba76e90820651d7d440a3e9d90678b

Base64:

54OH