Unicode Finder

"灉" U+7049(CJK UNIFIED IDEOGRAPH-7049)

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

Programming

C
\u7049
JavaScript
\u7049
Java
\u7049
Json
\u7049
Python
\u7049
Perl
\x{7049}
PHP
\x{7049}
Ruby
\u{7049}
Rust
\u{7049}
Go
\u7049

Web

CSS
\007049
HtmlDecimal
灉
HtmlHexadecimal
灉
Url
%E7%81%89

Code

MD5
20ee4dba4742668076bc1749a658504f
Sha1
ec6e359053a60a2c6572cf0764a500f1b9a7d99b
Base64
54GJ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7049';
console.log(char);  // Output: 灉

Java:

char c = '\u7049';
System.out.println(c);  // Output: 灉

JSON:

{"text": "\u7049"}  // Value: 灉

Python:

char = '\u7049'
print(char)  # Output: 灉

Perl:

my $char = "\x{7049}";
print $char;  # Output: 灉

PHP:

$char = "\x{7049}";
echo $char;  // Output: 灉

Ruby:

char = "\u{7049}"
puts char  # Output: 灉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007049";  /* Display: 灉 */
}

HTML Decimal:

<p>HTML decimal: &#28745;</p>  <!-- Display: 灉 -->

HTML Hexadecimal:

<p>HTML hex: &#x7049;</p>  <!-- Display: 灉 -->

URL Encoding:

// 灉 URL encoding
https://unicodefinder.com/search.php?query=%E7%81%89

Encodings

MD5:

20ee4dba4742668076bc1749a658504f

SHA1:

ec6e359053a60a2c6572cf0764a500f1b9a7d99b

Base64:

54GJ