Unicode Finder

"燓" U+71D3(CJK UNIFIED IDEOGRAPH-71D3)

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

Programming

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

Web

CSS
\0071D3
HtmlDecimal
燓
HtmlHexadecimal
燓
Url
%E7%87%93

Code

MD5
cbba66a367b1d34b5434dbcd97de2ff8
Sha1
b09cf0471ce2ad98113d4fea9eb61604e9a4c727
Base64
54eT

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u71D3';
console.log(char);  // Output: 燓

Java:

char c = '\u71D3';
System.out.println(c);  // Output: 燓

JSON:

{"text": "\u71D3"}  // Value: 燓

Python:

char = '\u71D3'
print(char)  # Output: 燓

Perl:

my $char = "\x{71D3}";
print $char;  # Output: 燓

PHP:

$char = "\x{71D3}";
echo $char;  // Output: 燓

Ruby:

char = "\u{71D3}"
puts char  # Output: 燓

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29139;</p>  <!-- Display: 燓 -->

HTML Hexadecimal:

<p>HTML hex: &#x71D3;</p>  <!-- Display: 燓 -->

URL Encoding:

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

Encodings

MD5:

cbba66a367b1d34b5434dbcd97de2ff8

SHA1:

b09cf0471ce2ad98113d4fea9eb61604e9a4c727

Base64:

54eT