Unicode Finder

"蒯" U+84AF(CJK UNIFIED IDEOGRAPH-84AF)

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

Programming

C
\u84AF
JavaScript
\u84AF
Java
\u84AF
Json
\u84AF
Python
\u84AF
Perl
\x{84AF}
PHP
\x{84AF}
Ruby
\u{84AF}
Rust
\u{84AF}
Go
\u84AF

Web

CSS
\0084AF
HtmlDecimal
蒯
HtmlHexadecimal
蒯
Url
%E8%92%AF

Code

MD5
91b7c084c665d90cd2088915d072d7c1
Sha1
dd2603c93212b74c143a31380b5973149ad5bc75
Base64
6JKv

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u84AF';
console.log(char);  // Output: 蒯

Java:

char c = '\u84AF';
System.out.println(c);  // Output: 蒯

JSON:

{"text": "\u84AF"}  // Value: 蒯

Python:

char = '\u84AF'
print(char)  # Output: 蒯

Perl:

my $char = "\x{84AF}";
print $char;  # Output: 蒯

PHP:

$char = "\x{84AF}";
echo $char;  // Output: 蒯

Ruby:

char = "\u{84AF}"
puts char  # Output: 蒯

Rust:

let c = '\u{84AF}';
println!("{}", c);  // Output: 蒯

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0084AF";  /* Display: 蒯 */
}

HTML Decimal:

<p>HTML decimal: &#33967;</p>  <!-- Display: 蒯 -->

HTML Hexadecimal:

<p>HTML hex: &#x84AF;</p>  <!-- Display: 蒯 -->

URL Encoding:

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

Encodings

MD5:

91b7c084c665d90cd2088915d072d7c1

SHA1:

dd2603c93212b74c143a31380b5973149ad5bc75

Base64:

6JKv