Unicode Finder

"燔" U+71D4(CJK UNIFIED IDEOGRAPH-71D4)

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

Programming

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

Web

CSS
\0071D4
HtmlDecimal
燔
HtmlHexadecimal
燔
Url
%E7%87%94

Code

MD5
53ae7e4fa0719b693f8c0f7bd42ae0a8
Sha1
9966392b348cbee1ff2e701317ddd8bcd9580122
Base64
54eU

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u71D4';
console.log(char);  // Output: 燔

Java:

char c = '\u71D4';
System.out.println(c);  // Output: 燔

JSON:

{"text": "\u71D4"}  // Value: 燔

Python:

char = '\u71D4'
print(char)  # Output: 燔

Perl:

my $char = "\x{71D4}";
print $char;  # Output: 燔

PHP:

$char = "\x{71D4}";
echo $char;  // Output: 燔

Ruby:

char = "\u{71D4}"
puts char  # Output: 燔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29140;</p>  <!-- Display: 燔 -->

HTML Hexadecimal:

<p>HTML hex: &#x71D4;</p>  <!-- Display: 燔 -->

URL Encoding:

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

Encodings

MD5:

53ae7e4fa0719b693f8c0f7bd42ae0a8

SHA1:

9966392b348cbee1ff2e701317ddd8bcd9580122

Base64:

54eU