Unicode Finder

"瑢" U+7462(CJK UNIFIED IDEOGRAPH-7462)

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

Programming

C
\u7462
JavaScript
\u7462
Java
\u7462
Json
\u7462
Python
\u7462
Perl
\x{7462}
PHP
\x{7462}
Ruby
\u{7462}
Rust
\u{7462}
Go
\u7462

Web

CSS
\007462
HtmlDecimal
瑢
HtmlHexadecimal
瑢
Url
%E7%91%A2

Code

MD5
fc0cfd09b289e9966f8bee4fc4e33de9
Sha1
217ad06e039381e21051be8db9d84244433ea4c3
Base64
55Gi

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7462';
console.log(char);  // Output: 瑢

Java:

char c = '\u7462';
System.out.println(c);  // Output: 瑢

JSON:

{"text": "\u7462"}  // Value: 瑢

Python:

char = '\u7462'
print(char)  # Output: 瑢

Perl:

my $char = "\x{7462}";
print $char;  # Output: 瑢

PHP:

$char = "\x{7462}";
echo $char;  // Output: 瑢

Ruby:

char = "\u{7462}"
puts char  # Output: 瑢

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007462";  /* Display: 瑢 */
}

HTML Decimal:

<p>HTML decimal: &#29794;</p>  <!-- Display: 瑢 -->

HTML Hexadecimal:

<p>HTML hex: &#x7462;</p>  <!-- Display: 瑢 -->

URL Encoding:

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

Encodings

MD5:

fc0cfd09b289e9966f8bee4fc4e33de9

SHA1:

217ad06e039381e21051be8db9d84244433ea4c3

Base64:

55Gi