Unicode Finder

"舕" U+8215(CJK UNIFIED IDEOGRAPH-8215)

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

Programming

C
\u8215
JavaScript
\u8215
Java
\u8215
Json
\u8215
Python
\u8215
Perl
\x{8215}
PHP
\x{8215}
Ruby
\u{8215}
Rust
\u{8215}
Go
\u8215

Web

CSS
\008215
HtmlDecimal
舕
HtmlHexadecimal
舕
Url
%E8%88%95

Code

MD5
80f2868517d782a7635c4cfd8f0ad9a3
Sha1
96a3718aaf8e24b257e6a0d098f1d732b07851c4
Base64
6IiV

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8215';
console.log(char);  // Output: 舕

Java:

char c = '\u8215';
System.out.println(c);  // Output: 舕

JSON:

{"text": "\u8215"}  // Value: 舕

Python:

char = '\u8215'
print(char)  # Output: 舕

Perl:

my $char = "\x{8215}";
print $char;  # Output: 舕

PHP:

$char = "\x{8215}";
echo $char;  // Output: 舕

Ruby:

char = "\u{8215}"
puts char  # Output: 舕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008215";  /* Display: 舕 */
}

HTML Decimal:

<p>HTML decimal: &#33301;</p>  <!-- Display: 舕 -->

HTML Hexadecimal:

<p>HTML hex: &#x8215;</p>  <!-- Display: 舕 -->

URL Encoding:

// 舕 URL encoding
https://unicodefinder.com/search.php?query=%E8%88%95

Encodings

MD5:

80f2868517d782a7635c4cfd8f0ad9a3

SHA1:

96a3718aaf8e24b257e6a0d098f1d732b07851c4

Base64:

6IiV