Unicode Finder

"琠" U+7420(CJK UNIFIED IDEOGRAPH-7420)

U+7420
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-7420

Programming

C
\u7420
JavaScript
\u7420
Java
\u7420
Json
\u7420
Python
\u7420
Perl
\x{7420}
PHP
\x{7420}
Ruby
\u{7420}
Rust
\u{7420}
Go
\u7420

Web

CSS
\007420
HtmlDecimal
琠
HtmlHexadecimal
琠
Url
%E7%90%A0

Code

MD5
34fd6e64f70b0683ed6609954a7b3a88
Sha1
03fddce506831e495a13f38bcdbdfe302402bde1
Base64
55Cg

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7420';
console.log(char);  // Output: 琠

Java:

char c = '\u7420';
System.out.println(c);  // Output: 琠

JSON:

{"text": "\u7420"}  // Value: 琠

Python:

char = '\u7420'
print(char)  # Output: 琠

Perl:

my $char = "\x{7420}";
print $char;  # Output: 琠

PHP:

$char = "\x{7420}";
echo $char;  // Output: 琠

Ruby:

char = "\u{7420}"
puts char  # Output: 琠

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007420";  /* Display: 琠 */
}

HTML Decimal:

<p>HTML decimal: &#29728;</p>  <!-- Display: 琠 -->

HTML Hexadecimal:

<p>HTML hex: &#x7420;</p>  <!-- Display: 琠 -->

URL Encoding:

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

Encodings

MD5:

34fd6e64f70b0683ed6609954a7b3a88

SHA1:

03fddce506831e495a13f38bcdbdfe302402bde1

Base64:

55Cg