Unicode Finder

"茕" U+8315(CJK UNIFIED IDEOGRAPH-8315)

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

Programming

C
\u8315
JavaScript
\u8315
Java
\u8315
Json
\u8315
Python
\u8315
Perl
\x{8315}
PHP
\x{8315}
Ruby
\u{8315}
Rust
\u{8315}
Go
\u8315

Web

CSS
\008315
HtmlDecimal
茕
HtmlHexadecimal
茕
Url
%E8%8C%95

Code

MD5
873c4f63a0c6f7b77dba608682acddb1
Sha1
8a778af837e4076bb0bd3d838fb773a623352124
Base64
6IyV

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8315';
console.log(char);  // Output: 茕

Java:

char c = '\u8315';
System.out.println(c);  // Output: 茕

JSON:

{"text": "\u8315"}  // Value: 茕

Python:

char = '\u8315'
print(char)  # Output: 茕

Perl:

my $char = "\x{8315}";
print $char;  # Output: 茕

PHP:

$char = "\x{8315}";
echo $char;  // Output: 茕

Ruby:

char = "\u{8315}"
puts char  # Output: 茕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008315";  /* Display: 茕 */
}

HTML Decimal:

<p>HTML decimal: &#33557;</p>  <!-- Display: 茕 -->

HTML Hexadecimal:

<p>HTML hex: &#x8315;</p>  <!-- Display: 茕 -->

URL Encoding:

// 茕 URL encoding
https://unicodefinder.com/search.php?query=%E8%8C%95

Encodings

MD5:

873c4f63a0c6f7b77dba608682acddb1

SHA1:

8a778af837e4076bb0bd3d838fb773a623352124

Base64:

6IyV