Unicode Finder

"腓" U+8153(CJK UNIFIED IDEOGRAPH-8153)

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

Programming

C
\u8153
JavaScript
\u8153
Java
\u8153
Json
\u8153
Python
\u8153
Perl
\x{8153}
PHP
\x{8153}
Ruby
\u{8153}
Rust
\u{8153}
Go
\u8153

Web

CSS
\008153
HtmlDecimal
腓
HtmlHexadecimal
腓
Url
%E8%85%93

Code

MD5
79257a512eea1189839b79a2b2e0d87f
Sha1
a15ac2aa25e4279965b797283a40acd302fcdfb3
Base64
6IWT

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8153';
console.log(char);  // Output: 腓

Java:

char c = '\u8153';
System.out.println(c);  // Output: 腓

JSON:

{"text": "\u8153"}  // Value: 腓

Python:

char = '\u8153'
print(char)  # Output: 腓

Perl:

my $char = "\x{8153}";
print $char;  # Output: 腓

PHP:

$char = "\x{8153}";
echo $char;  // Output: 腓

Ruby:

char = "\u{8153}"
puts char  # Output: 腓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008153";  /* Display: 腓 */
}

HTML Decimal:

<p>HTML decimal: &#33107;</p>  <!-- Display: 腓 -->

HTML Hexadecimal:

<p>HTML hex: &#x8153;</p>  <!-- Display: 腓 -->

URL Encoding:

// 腓 URL encoding
https://unicodefinder.com/search.php?query=%E8%85%93

Encodings

MD5:

79257a512eea1189839b79a2b2e0d87f

SHA1:

a15ac2aa25e4279965b797283a40acd302fcdfb3

Base64:

6IWT