Unicode Finder

"肉" U+8089(CJK UNIFIED IDEOGRAPH-8089)

U+8089
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-8089

Programming

C
\u8089
JavaScript
\u8089
Java
\u8089
Json
\u8089
Python
\u8089
Perl
\x{8089}
PHP
\x{8089}
Ruby
\u{8089}
Rust
\u{8089}
Go
\u8089

Web

CSS
\008089
HtmlDecimal
肉
HtmlHexadecimal
肉
Url
%E8%82%89

Code

MD5
f37896e63b9eaf32c17a2c19c9bde1dd
Sha1
6759709d600231d0e70706d85e170f01dc173da9
Base64
6IKJ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8089';
console.log(char);  // Output: 肉

Java:

char c = '\u8089';
System.out.println(c);  // Output: 肉

JSON:

{"text": "\u8089"}  // Value: 肉

Python:

char = '\u8089'
print(char)  # Output: 肉

Perl:

my $char = "\x{8089}";
print $char;  # Output: 肉

PHP:

$char = "\x{8089}";
echo $char;  // Output: 肉

Ruby:

char = "\u{8089}"
puts char  # Output: 肉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008089";  /* Display: 肉 */
}

HTML Decimal:

<p>HTML decimal: &#32905;</p>  <!-- Display: 肉 -->

HTML Hexadecimal:

<p>HTML hex: &#x8089;</p>  <!-- Display: 肉 -->

URL Encoding:

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

Encodings

MD5:

f37896e63b9eaf32c17a2c19c9bde1dd

SHA1:

6759709d600231d0e70706d85e170f01dc173da9

Base64:

6IKJ