Unicode Finder

"芉" U+8289(CJK UNIFIED IDEOGRAPH-8289)

U+8289
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-8289

Programming

C
\u8289
JavaScript
\u8289
Java
\u8289
Json
\u8289
Python
\u8289
Perl
\x{8289}
PHP
\x{8289}
Ruby
\u{8289}
Rust
\u{8289}
Go
\u8289

Web

CSS
\008289
HtmlDecimal
芉
HtmlHexadecimal
芉
Url
%E8%8A%89

Code

MD5
83406bf05ce3b5627c6d2164155bbac0
Sha1
e68e4e7258a95dabb6ab193c899d83e833d5ebff
Base64
6IqJ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8289';
console.log(char);  // Output: 芉

Java:

char c = '\u8289';
System.out.println(c);  // Output: 芉

JSON:

{"text": "\u8289"}  // Value: 芉

Python:

char = '\u8289'
print(char)  # Output: 芉

Perl:

my $char = "\x{8289}";
print $char;  # Output: 芉

PHP:

$char = "\x{8289}";
echo $char;  // Output: 芉

Ruby:

char = "\u{8289}"
puts char  # Output: 芉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008289";  /* Display: 芉 */
}

HTML Decimal:

<p>HTML decimal: &#33417;</p>  <!-- Display: 芉 -->

HTML Hexadecimal:

<p>HTML hex: &#x8289;</p>  <!-- Display: 芉 -->

URL Encoding:

// 芉 URL encoding
https://unicodefinder.com/search.php?query=%E8%8A%89

Encodings

MD5:

83406bf05ce3b5627c6d2164155bbac0

SHA1:

e68e4e7258a95dabb6ab193c899d83e833d5ebff

Base64:

6IqJ