Unicode Finder

"烥" U+70E5(CJK UNIFIED IDEOGRAPH-70E5)

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

Programming

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

Web

CSS
\0070E5
HtmlDecimal
烥
HtmlHexadecimal
烥
Url
%E7%83%A5

Code

MD5
102619006dac051f636a4f02082c8721
Sha1
ffb824c96e8b83b8ed0d1e1a117171419ad5f5db
Base64
54Ol

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u70E5';
console.log(char);  // Output: 烥

Java:

char c = '\u70E5';
System.out.println(c);  // Output: 烥

JSON:

{"text": "\u70E5"}  // Value: 烥

Python:

char = '\u70E5'
print(char)  # Output: 烥

Perl:

my $char = "\x{70E5}";
print $char;  # Output: 烥

PHP:

$char = "\x{70E5}";
echo $char;  // Output: 烥

Ruby:

char = "\u{70E5}"
puts char  # Output: 烥

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28901;</p>  <!-- Display: 烥 -->

HTML Hexadecimal:

<p>HTML hex: &#x70E5;</p>  <!-- Display: 烥 -->

URL Encoding:

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

Encodings

MD5:

102619006dac051f636a4f02082c8721

SHA1:

ffb824c96e8b83b8ed0d1e1a117171419ad5f5db

Base64:

54Ol