Unicode Finder

"燬" U+71EC(CJK UNIFIED IDEOGRAPH-71EC)

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

Programming

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

Web

CSS
\0071EC
HtmlDecimal
燬
HtmlHexadecimal
燬
Url
%E7%87%AC

Code

MD5
20853bf5829ce2192f503f10dba7ea91
Sha1
7cba946dd0da7e7bdfe50f2e9589d728b502dd30
Base64
54es

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u71EC';
console.log(char);  // Output: 燬

Java:

char c = '\u71EC';
System.out.println(c);  // Output: 燬

JSON:

{"text": "\u71EC"}  // Value: 燬

Python:

char = '\u71EC'
print(char)  # Output: 燬

Perl:

my $char = "\x{71EC}";
print $char;  # Output: 燬

PHP:

$char = "\x{71EC}";
echo $char;  // Output: 燬

Ruby:

char = "\u{71EC}"
puts char  # Output: 燬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29164;</p>  <!-- Display: 燬 -->

HTML Hexadecimal:

<p>HTML hex: &#x71EC;</p>  <!-- Display: 燬 -->

URL Encoding:

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

Encodings

MD5:

20853bf5829ce2192f503f10dba7ea91

SHA1:

7cba946dd0da7e7bdfe50f2e9589d728b502dd30

Base64:

54es