Unicode Finder

"蒂" U+8482(CJK UNIFIED IDEOGRAPH-8482)

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

Programming

C
\u8482
JavaScript
\u8482
Java
\u8482
Json
\u8482
Python
\u8482
Perl
\x{8482}
PHP
\x{8482}
Ruby
\u{8482}
Rust
\u{8482}
Go
\u8482

Web

CSS
\008482
HtmlDecimal
蒂
HtmlHexadecimal
蒂
Url
%E8%92%82

Code

MD5
fae44400369beb04d934dfeb6afe00da
Sha1
a54f13ebb0248dd980915ce9d6bd9a6e0a6310dd
Base64
6JKC

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8482';
console.log(char);  // Output: 蒂

Java:

char c = '\u8482';
System.out.println(c);  // Output: 蒂

JSON:

{"text": "\u8482"}  // Value: 蒂

Python:

char = '\u8482'
print(char)  # Output: 蒂

Perl:

my $char = "\x{8482}";
print $char;  # Output: 蒂

PHP:

$char = "\x{8482}";
echo $char;  // Output: 蒂

Ruby:

char = "\u{8482}"
puts char  # Output: 蒂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008482";  /* Display: 蒂 */
}

HTML Decimal:

<p>HTML decimal: &#33922;</p>  <!-- Display: 蒂 -->

HTML Hexadecimal:

<p>HTML hex: &#x8482;</p>  <!-- Display: 蒂 -->

URL Encoding:

// 蒂 URL encoding
https://unicodefinder.com/search.php?query=%E8%92%82

Encodings

MD5:

fae44400369beb04d934dfeb6afe00da

SHA1:

a54f13ebb0248dd980915ce9d6bd9a6e0a6310dd

Base64:

6JKC