Unicode Finder

"璂" U+7482(CJK UNIFIED IDEOGRAPH-7482)

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

Programming

C
\u7482
JavaScript
\u7482
Java
\u7482
Json
\u7482
Python
\u7482
Perl
\x{7482}
PHP
\x{7482}
Ruby
\u{7482}
Rust
\u{7482}
Go
\u7482

Web

CSS
\007482
HtmlDecimal
璂
HtmlHexadecimal
璂
Url
%E7%92%82

Code

MD5
2a87ffd83ca7afba0dd2ab378e9acfcb
Sha1
774a2cf46f67eeec2c7d6dc7d2c044c62e8a5d95
Base64
55KC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7482';
console.log(char);  // Output: 璂

Java:

char c = '\u7482';
System.out.println(c);  // Output: 璂

JSON:

{"text": "\u7482"}  // Value: 璂

Python:

char = '\u7482'
print(char)  # Output: 璂

Perl:

my $char = "\x{7482}";
print $char;  # Output: 璂

PHP:

$char = "\x{7482}";
echo $char;  // Output: 璂

Ruby:

char = "\u{7482}"
puts char  # Output: 璂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007482";  /* Display: 璂 */
}

HTML Decimal:

<p>HTML decimal: &#29826;</p>  <!-- Display: 璂 -->

HTML Hexadecimal:

<p>HTML hex: &#x7482;</p>  <!-- Display: 璂 -->

URL Encoding:

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

Encodings

MD5:

2a87ffd83ca7afba0dd2ab378e9acfcb

SHA1:

774a2cf46f67eeec2c7d6dc7d2c044c62e8a5d95

Base64:

55KC