Unicode Finder

"蘰" U+8630(CJK UNIFIED IDEOGRAPH-8630)

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

Programming

C
\u8630
JavaScript
\u8630
Java
\u8630
Json
\u8630
Python
\u8630
Perl
\x{8630}
PHP
\x{8630}
Ruby
\u{8630}
Rust
\u{8630}
Go
\u8630

Web

CSS
\008630
HtmlDecimal
蘰
HtmlHexadecimal
蘰
Url
%E8%98%B0

Code

MD5
a81dbc44e9de662371b430cdb40a1072
Sha1
41a5c3841f8692d307453766e0cb35e18f895fd7
Base64
6Jiw

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8630';
console.log(char);  // Output: 蘰

Java:

char c = '\u8630';
System.out.println(c);  // Output: 蘰

JSON:

{"text": "\u8630"}  // Value: 蘰

Python:

char = '\u8630'
print(char)  # Output: 蘰

Perl:

my $char = "\x{8630}";
print $char;  # Output: 蘰

PHP:

$char = "\x{8630}";
echo $char;  // Output: 蘰

Ruby:

char = "\u{8630}"
puts char  # Output: 蘰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008630";  /* Display: 蘰 */
}

HTML Decimal:

<p>HTML decimal: &#34352;</p>  <!-- Display: 蘰 -->

HTML Hexadecimal:

<p>HTML hex: &#x8630;</p>  <!-- Display: 蘰 -->

URL Encoding:

// 蘰 URL encoding
https://unicodefinder.com/search.php?query=%E8%98%B0

Encodings

MD5:

a81dbc44e9de662371b430cdb40a1072

SHA1:

41a5c3841f8692d307453766e0cb35e18f895fd7

Base64:

6Jiw