Unicode Finder

"瘅" U+7605(CJK UNIFIED IDEOGRAPH-7605)

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

Programming

C
\u7605
JavaScript
\u7605
Java
\u7605
Json
\u7605
Python
\u7605
Perl
\x{7605}
PHP
\x{7605}
Ruby
\u{7605}
Rust
\u{7605}
Go
\u7605

Web

CSS
\007605
HtmlDecimal
瘅
HtmlHexadecimal
瘅
Url
%E7%98%85

Code

MD5
d53ac6a2aa2ac435f09eee9c905b7144
Sha1
d32b3b0f2962b9958ae86861b4c49e723997a648
Base64
55iF

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7605';
console.log(char);  // Output: 瘅

Java:

char c = '\u7605';
System.out.println(c);  // Output: 瘅

JSON:

{"text": "\u7605"}  // Value: 瘅

Python:

char = '\u7605'
print(char)  # Output: 瘅

Perl:

my $char = "\x{7605}";
print $char;  # Output: 瘅

PHP:

$char = "\x{7605}";
echo $char;  // Output: 瘅

Ruby:

char = "\u{7605}"
puts char  # Output: 瘅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007605";  /* Display: 瘅 */
}

HTML Decimal:

<p>HTML decimal: &#30213;</p>  <!-- Display: 瘅 -->

HTML Hexadecimal:

<p>HTML hex: &#x7605;</p>  <!-- Display: 瘅 -->

URL Encoding:

// 瘅 URL encoding
https://unicodefinder.com/search.php?query=%E7%98%85

Encodings

MD5:

d53ac6a2aa2ac435f09eee9c905b7144

SHA1:

d32b3b0f2962b9958ae86861b4c49e723997a648

Base64:

55iF