Unicode Finder

"瑱" U+7471(CJK UNIFIED IDEOGRAPH-7471)

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

Programming

C
\u7471
JavaScript
\u7471
Java
\u7471
Json
\u7471
Python
\u7471
Perl
\x{7471}
PHP
\x{7471}
Ruby
\u{7471}
Rust
\u{7471}
Go
\u7471

Web

CSS
\007471
HtmlDecimal
瑱
HtmlHexadecimal
瑱
Url
%E7%91%B1

Code

MD5
690369efdd7851eca2c1c7672e960bda
Sha1
01bbbd56981400c3fdc18e4e099b8331f358a2bc
Base64
55Gx

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7471';
console.log(char);  // Output: 瑱

Java:

char c = '\u7471';
System.out.println(c);  // Output: 瑱

JSON:

{"text": "\u7471"}  // Value: 瑱

Python:

char = '\u7471'
print(char)  # Output: 瑱

Perl:

my $char = "\x{7471}";
print $char;  # Output: 瑱

PHP:

$char = "\x{7471}";
echo $char;  // Output: 瑱

Ruby:

char = "\u{7471}"
puts char  # Output: 瑱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007471";  /* Display: 瑱 */
}

HTML Decimal:

<p>HTML decimal: &#29809;</p>  <!-- Display: 瑱 -->

HTML Hexadecimal:

<p>HTML hex: &#x7471;</p>  <!-- Display: 瑱 -->

URL Encoding:

// 瑱 URL encoding
https://unicodefinder.com/search.php?query=%E7%91%B1

Encodings

MD5:

690369efdd7851eca2c1c7672e960bda

SHA1:

01bbbd56981400c3fdc18e4e099b8331f358a2bc

Base64:

55Gx