Unicode Finder

"瑨" U+7468(CJK UNIFIED IDEOGRAPH-7468)

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

Programming

C
\u7468
JavaScript
\u7468
Java
\u7468
Json
\u7468
Python
\u7468
Perl
\x{7468}
PHP
\x{7468}
Ruby
\u{7468}
Rust
\u{7468}
Go
\u7468

Web

CSS
\007468
HtmlDecimal
瑨
HtmlHexadecimal
瑨
Url
%E7%91%A8

Code

MD5
015dc5c9f9d1f70d73d740b0c4dbf1bf
Sha1
4690ccd17d9b2fe4efed84cd63c89c8e4abf1401
Base64
55Go

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7468';
console.log(char);  // Output: 瑨

Java:

char c = '\u7468';
System.out.println(c);  // Output: 瑨

JSON:

{"text": "\u7468"}  // Value: 瑨

Python:

char = '\u7468'
print(char)  # Output: 瑨

Perl:

my $char = "\x{7468}";
print $char;  # Output: 瑨

PHP:

$char = "\x{7468}";
echo $char;  // Output: 瑨

Ruby:

char = "\u{7468}"
puts char  # Output: 瑨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007468";  /* Display: 瑨 */
}

HTML Decimal:

<p>HTML decimal: &#29800;</p>  <!-- Display: 瑨 -->

HTML Hexadecimal:

<p>HTML hex: &#x7468;</p>  <!-- Display: 瑨 -->

URL Encoding:

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

Encodings

MD5:

015dc5c9f9d1f70d73d740b0c4dbf1bf

SHA1:

4690ccd17d9b2fe4efed84cd63c89c8e4abf1401

Base64:

55Go