Unicode Finder

"焃" U+7103(CJK UNIFIED IDEOGRAPH-7103)

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

Programming

C
\u7103
JavaScript
\u7103
Java
\u7103
Json
\u7103
Python
\u7103
Perl
\x{7103}
PHP
\x{7103}
Ruby
\u{7103}
Rust
\u{7103}
Go
\u7103

Web

CSS
\007103
HtmlDecimal
焃
HtmlHexadecimal
焃
Url
%E7%84%83

Code

MD5
da0b693abc03a940bc69645aa663e46f
Sha1
a4978cf76f700acdce96e7a29c998bd8cca4a9df
Base64
54SD

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7103';
console.log(char);  // Output: 焃

Java:

char c = '\u7103';
System.out.println(c);  // Output: 焃

JSON:

{"text": "\u7103"}  // Value: 焃

Python:

char = '\u7103'
print(char)  # Output: 焃

Perl:

my $char = "\x{7103}";
print $char;  # Output: 焃

PHP:

$char = "\x{7103}";
echo $char;  // Output: 焃

Ruby:

char = "\u{7103}"
puts char  # Output: 焃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007103";  /* Display: 焃 */
}

HTML Decimal:

<p>HTML decimal: &#28931;</p>  <!-- Display: 焃 -->

HTML Hexadecimal:

<p>HTML hex: &#x7103;</p>  <!-- Display: 焃 -->

URL Encoding:

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

Encodings

MD5:

da0b693abc03a940bc69645aa663e46f

SHA1:

a4978cf76f700acdce96e7a29c998bd8cca4a9df

Base64:

54SD