Unicode Finder

"爐" U+7210(CJK UNIFIED IDEOGRAPH-7210)

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

Programming

C
\u7210
JavaScript
\u7210
Java
\u7210
Json
\u7210
Python
\u7210
Perl
\x{7210}
PHP
\x{7210}
Ruby
\u{7210}
Rust
\u{7210}
Go
\u7210

Web

CSS
\007210
HtmlDecimal
爐
HtmlHexadecimal
爐
Url
%E7%88%90

Code

MD5
f4d4aba2bd6ce75e7f1095a88842b805
Sha1
6e24e460f72fec6bc5ce662966131c87309d958d
Base64
54iQ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7210';
console.log(char);  // Output: 爐

Java:

char c = '\u7210';
System.out.println(c);  // Output: 爐

JSON:

{"text": "\u7210"}  // Value: 爐

Python:

char = '\u7210'
print(char)  # Output: 爐

Perl:

my $char = "\x{7210}";
print $char;  # Output: 爐

PHP:

$char = "\x{7210}";
echo $char;  // Output: 爐

Ruby:

char = "\u{7210}"
puts char  # Output: 爐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007210";  /* Display: 爐 */
}

HTML Decimal:

<p>HTML decimal: &#29200;</p>  <!-- Display: 爐 -->

HTML Hexadecimal:

<p>HTML hex: &#x7210;</p>  <!-- Display: 爐 -->

URL Encoding:

// 爐 URL encoding
https://unicodefinder.com/search.php?query=%E7%88%90

Encodings

MD5:

f4d4aba2bd6ce75e7f1095a88842b805

SHA1:

6e24e460f72fec6bc5ce662966131c87309d958d

Base64:

54iQ