Unicode Finder

"肄" U+8084(CJK UNIFIED IDEOGRAPH-8084)

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

Programming

C
\u8084
JavaScript
\u8084
Java
\u8084
Json
\u8084
Python
\u8084
Perl
\x{8084}
PHP
\x{8084}
Ruby
\u{8084}
Rust
\u{8084}
Go
\u8084

Web

CSS
\008084
HtmlDecimal
肄
HtmlHexadecimal
肄
Url
%E8%82%84

Code

MD5
da76ab174cf5e7ec2a58cccb6750d65d
Sha1
818f2805816f1cbabdccdfc4f73f2e2d55eb9eb2
Base64
6IKE

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8084';
console.log(char);  // Output: 肄

Java:

char c = '\u8084';
System.out.println(c);  // Output: 肄

JSON:

{"text": "\u8084"}  // Value: 肄

Python:

char = '\u8084'
print(char)  # Output: 肄

Perl:

my $char = "\x{8084}";
print $char;  # Output: 肄

PHP:

$char = "\x{8084}";
echo $char;  // Output: 肄

Ruby:

char = "\u{8084}"
puts char  # Output: 肄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008084";  /* Display: 肄 */
}

HTML Decimal:

<p>HTML decimal: &#32900;</p>  <!-- Display: 肄 -->

HTML Hexadecimal:

<p>HTML hex: &#x8084;</p>  <!-- Display: 肄 -->

URL Encoding:

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

Encodings

MD5:

da76ab174cf5e7ec2a58cccb6750d65d

SHA1:

818f2805816f1cbabdccdfc4f73f2e2d55eb9eb2

Base64:

6IKE