Unicode Finder

"瑵" U+7475(CJK UNIFIED IDEOGRAPH-7475)

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

Programming

C
\u7475
JavaScript
\u7475
Java
\u7475
Json
\u7475
Python
\u7475
Perl
\x{7475}
PHP
\x{7475}
Ruby
\u{7475}
Rust
\u{7475}
Go
\u7475

Web

CSS
\007475
HtmlDecimal
瑵
HtmlHexadecimal
瑵
Url
%E7%91%B5

Code

MD5
09af6134f266e904cb663d2b6b9a0632
Sha1
80476fab640f8345ef0eea7c329c589efa337968
Base64
55G1

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7475';
console.log(char);  // Output: 瑵

Java:

char c = '\u7475';
System.out.println(c);  // Output: 瑵

JSON:

{"text": "\u7475"}  // Value: 瑵

Python:

char = '\u7475'
print(char)  # Output: 瑵

Perl:

my $char = "\x{7475}";
print $char;  # Output: 瑵

PHP:

$char = "\x{7475}";
echo $char;  // Output: 瑵

Ruby:

char = "\u{7475}"
puts char  # Output: 瑵

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007475";  /* Display: 瑵 */
}

HTML Decimal:

<p>HTML decimal: &#29813;</p>  <!-- Display: 瑵 -->

HTML Hexadecimal:

<p>HTML hex: &#x7475;</p>  <!-- Display: 瑵 -->

URL Encoding:

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

Encodings

MD5:

09af6134f266e904cb663d2b6b9a0632

SHA1:

80476fab640f8345ef0eea7c329c589efa337968

Base64:

55G1