Unicode Finder

"璖" U+7496(CJK UNIFIED IDEOGRAPH-7496)

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

Programming

C
\u7496
JavaScript
\u7496
Java
\u7496
Json
\u7496
Python
\u7496
Perl
\x{7496}
PHP
\x{7496}
Ruby
\u{7496}
Rust
\u{7496}
Go
\u7496

Web

CSS
\007496
HtmlDecimal
璖
HtmlHexadecimal
璖
Url
%E7%92%96

Code

MD5
08b9ab65f96731990092fc56a984ff7f
Sha1
c064665d88f9d78d8759b8b5739f7ee53092645a
Base64
55KW

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7496';
console.log(char);  // Output: 璖

Java:

char c = '\u7496';
System.out.println(c);  // Output: 璖

JSON:

{"text": "\u7496"}  // Value: 璖

Python:

char = '\u7496'
print(char)  # Output: 璖

Perl:

my $char = "\x{7496}";
print $char;  # Output: 璖

PHP:

$char = "\x{7496}";
echo $char;  // Output: 璖

Ruby:

char = "\u{7496}"
puts char  # Output: 璖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007496";  /* Display: 璖 */
}

HTML Decimal:

<p>HTML decimal: &#29846;</p>  <!-- Display: 璖 -->

HTML Hexadecimal:

<p>HTML hex: &#x7496;</p>  <!-- Display: 璖 -->

URL Encoding:

// 璖 URL encoding
https://unicodefinder.com/search.php?query=%E7%92%96

Encodings

MD5:

08b9ab65f96731990092fc56a984ff7f

SHA1:

c064665d88f9d78d8759b8b5739f7ee53092645a

Base64:

55KW