Unicode Finder

"燄" U+71C4(CJK UNIFIED IDEOGRAPH-71C4)

U+71C4
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-71C4

Programming

C
\u71C4
JavaScript
\u71C4
Java
\u71C4
Json
\u71C4
Python
\u71C4
Perl
\x{71C4}
PHP
\x{71C4}
Ruby
\u{71C4}
Rust
\u{71C4}
Go
\u71C4

Web

CSS
\0071C4
HtmlDecimal
燄
HtmlHexadecimal
燄
Url
%E7%87%84

Code

MD5
04d0559818a94920964e3de74ecce818
Sha1
03638fb801d86b41ef8076631359657e462a9656
Base64
54eE

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u71C4';
console.log(char);  // Output: 燄

Java:

char c = '\u71C4';
System.out.println(c);  // Output: 燄

JSON:

{"text": "\u71C4"}  // Value: 燄

Python:

char = '\u71C4'
print(char)  # Output: 燄

Perl:

my $char = "\x{71C4}";
print $char;  # Output: 燄

PHP:

$char = "\x{71C4}";
echo $char;  // Output: 燄

Ruby:

char = "\u{71C4}"
puts char  # Output: 燄

Rust:

let c = '\u{71C4}';
println!("{}", c);  // Output: 燄

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0071C4";  /* Display: 燄 */
}

HTML Decimal:

<p>HTML decimal: &#29124;</p>  <!-- Display: 燄 -->

HTML Hexadecimal:

<p>HTML hex: &#x71C4;</p>  <!-- Display: 燄 -->

URL Encoding:

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

Encodings

MD5:

04d0559818a94920964e3de74ecce818

SHA1:

03638fb801d86b41ef8076631359657e462a9656

Base64:

54eE