Unicode Finder

"焕" U+7115(CJK UNIFIED IDEOGRAPH-7115)

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

Programming

C
\u7115
JavaScript
\u7115
Java
\u7115
Json
\u7115
Python
\u7115
Perl
\x{7115}
PHP
\x{7115}
Ruby
\u{7115}
Rust
\u{7115}
Go
\u7115

Web

CSS
\007115
HtmlDecimal
焕
HtmlHexadecimal
焕
Url
%E7%84%95

Code

MD5
8234410eb58d3b7c9d7dd4e9b78f7745
Sha1
0df8c24047bcf1f7bb2e85ce19a98387816ce0df
Base64
54SV

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7115';
console.log(char);  // Output: 焕

Java:

char c = '\u7115';
System.out.println(c);  // Output: 焕

JSON:

{"text": "\u7115"}  // Value: 焕

Python:

char = '\u7115'
print(char)  # Output: 焕

Perl:

my $char = "\x{7115}";
print $char;  # Output: 焕

PHP:

$char = "\x{7115}";
echo $char;  // Output: 焕

Ruby:

char = "\u{7115}"
puts char  # Output: 焕

Rust:

let c = '\u{7115}';
println!("{}", c);  // Output: 焕

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007115";  /* Display: 焕 */
}

HTML Decimal:

<p>HTML decimal: &#28949;</p>  <!-- Display: 焕 -->

HTML Hexadecimal:

<p>HTML hex: &#x7115;</p>  <!-- Display: 焕 -->

URL Encoding:

// 焕 URL encoding
https://unicodefinder.com/search.php?query=%E7%84%95

Encodings

MD5:

8234410eb58d3b7c9d7dd4e9b78f7745

SHA1:

0df8c24047bcf1f7bb2e85ce19a98387816ce0df

Base64:

54SV