Unicode Finder

"烿" U+70FF(CJK UNIFIED IDEOGRAPH-70FF)

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

Programming

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

Web

CSS
\0070FF
HtmlDecimal
烿
HtmlHexadecimal
烿
Url
%E7%83%BF

Code

MD5
e484debbe3c14f5a96b150f3cadf353c
Sha1
a06c44260e263c0a02e38cd987fcfd5adae7fc86
Base64
54O/

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u70FF';
console.log(char);  // Output: 烿

Java:

char c = '\u70FF';
System.out.println(c);  // Output: 烿

JSON:

{"text": "\u70FF"}  // Value: 烿

Python:

char = '\u70FF'
print(char)  # Output: 烿

Perl:

my $char = "\x{70FF}";
print $char;  # Output: 烿

PHP:

$char = "\x{70FF}";
echo $char;  // Output: 烿

Ruby:

char = "\u{70FF}"
puts char  # Output: 烿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28927;</p>  <!-- Display: 烿 -->

HTML Hexadecimal:

<p>HTML hex: &#x70FF;</p>  <!-- Display: 烿 -->

URL Encoding:

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

Encodings

MD5:

e484debbe3c14f5a96b150f3cadf353c

SHA1:

a06c44260e263c0a02e38cd987fcfd5adae7fc86

Base64:

54O/