Unicode Finder

"礉" U+7909(CJK UNIFIED IDEOGRAPH-7909)

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

Programming

C
\u7909
JavaScript
\u7909
Java
\u7909
Json
\u7909
Python
\u7909
Perl
\x{7909}
PHP
\x{7909}
Ruby
\u{7909}
Rust
\u{7909}
Go
\u7909

Web

CSS
\007909
HtmlDecimal
礉
HtmlHexadecimal
礉
Url
%E7%A4%89

Code

MD5
8aa9ced7bd862e8ea31ae55d86ffb714
Sha1
48f8e81ff66e6eba5939543869692cb6d8d5b5e5
Base64
56SJ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7909';
console.log(char);  // Output: 礉

Java:

char c = '\u7909';
System.out.println(c);  // Output: 礉

JSON:

{"text": "\u7909"}  // Value: 礉

Python:

char = '\u7909'
print(char)  # Output: 礉

Perl:

my $char = "\x{7909}";
print $char;  # Output: 礉

PHP:

$char = "\x{7909}";
echo $char;  // Output: 礉

Ruby:

char = "\u{7909}"
puts char  # Output: 礉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007909";  /* Display: 礉 */
}

HTML Decimal:

<p>HTML decimal: &#30985;</p>  <!-- Display: 礉 -->

HTML Hexadecimal:

<p>HTML hex: &#x7909;</p>  <!-- Display: 礉 -->

URL Encoding:

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

Encodings

MD5:

8aa9ced7bd862e8ea31ae55d86ffb714

SHA1:

48f8e81ff66e6eba5939543869692cb6d8d5b5e5

Base64:

56SJ