Unicode Finder

"舆" U+8206(CJK UNIFIED IDEOGRAPH-8206)

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

Programming

C
\u8206
JavaScript
\u8206
Java
\u8206
Json
\u8206
Python
\u8206
Perl
\x{8206}
PHP
\x{8206}
Ruby
\u{8206}
Rust
\u{8206}
Go
\u8206

Web

CSS
\008206
HtmlDecimal
舆
HtmlHexadecimal
舆
Url
%E8%88%86

Code

MD5
a20f3d464fffc3afc383723ce82e8aa7
Sha1
a594ff63fc8598a19f2d597531ff066f05075b0f
Base64
6IiG

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8206';
console.log(char);  // Output: 舆

Java:

char c = '\u8206';
System.out.println(c);  // Output: 舆

JSON:

{"text": "\u8206"}  // Value: 舆

Python:

char = '\u8206'
print(char)  # Output: 舆

Perl:

my $char = "\x{8206}";
print $char;  # Output: 舆

PHP:

$char = "\x{8206}";
echo $char;  // Output: 舆

Ruby:

char = "\u{8206}"
puts char  # Output: 舆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008206";  /* Display: 舆 */
}

HTML Decimal:

<p>HTML decimal: &#33286;</p>  <!-- Display: 舆 -->

HTML Hexadecimal:

<p>HTML hex: &#x8206;</p>  <!-- Display: 舆 -->

URL Encoding:

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

Encodings

MD5:

a20f3d464fffc3afc383723ce82e8aa7

SHA1:

a594ff63fc8598a19f2d597531ff066f05075b0f

Base64:

6IiG