Unicode Finder

"烽" U+70FD(CJK UNIFIED IDEOGRAPH-70FD)

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

Programming

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

Web

CSS
\0070FD
HtmlDecimal
烽
HtmlHexadecimal
烽
Url
%E7%83%BD

Code

MD5
23b22afa5c37e54fb53c2b685d6c4176
Sha1
9d31ee0141fc274740fe44e2714823afd57f97a2
Base64
54O9

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u70FD';
console.log(char);  // Output: 烽

Java:

char c = '\u70FD';
System.out.println(c);  // Output: 烽

JSON:

{"text": "\u70FD"}  // Value: 烽

Python:

char = '\u70FD'
print(char)  # Output: 烽

Perl:

my $char = "\x{70FD}";
print $char;  # Output: 烽

PHP:

$char = "\x{70FD}";
echo $char;  // Output: 烽

Ruby:

char = "\u{70FD}"
puts char  # Output: 烽

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28925;</p>  <!-- Display: 烽 -->

HTML Hexadecimal:

<p>HTML hex: &#x70FD;</p>  <!-- Display: 烽 -->

URL Encoding:

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

Encodings

MD5:

23b22afa5c37e54fb53c2b685d6c4176

SHA1:

9d31ee0141fc274740fe44e2714823afd57f97a2

Base64:

54O9