Unicode Finder

"荐" U+8350(CJK UNIFIED IDEOGRAPH-8350)

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

Programming

C
\u8350
JavaScript
\u8350
Java
\u8350
Json
\u8350
Python
\u8350
Perl
\x{8350}
PHP
\x{8350}
Ruby
\u{8350}
Rust
\u{8350}
Go
\u8350

Web

CSS
\008350
HtmlDecimal
荐
HtmlHexadecimal
荐
Url
%E8%8D%90

Code

MD5
d9ebe0a6e923594278ce3fa6dad9e42e
Sha1
364bd549e49ca1592ef4d40977565ef5ef05ef7d
Base64
6I2Q

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8350';
console.log(char);  // Output: 荐

Java:

char c = '\u8350';
System.out.println(c);  // Output: 荐

JSON:

{"text": "\u8350"}  // Value: 荐

Python:

char = '\u8350'
print(char)  # Output: 荐

Perl:

my $char = "\x{8350}";
print $char;  # Output: 荐

PHP:

$char = "\x{8350}";
echo $char;  // Output: 荐

Ruby:

char = "\u{8350}"
puts char  # Output: 荐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008350";  /* Display: 荐 */
}

HTML Decimal:

<p>HTML decimal: &#33616;</p>  <!-- Display: 荐 -->

HTML Hexadecimal:

<p>HTML hex: &#x8350;</p>  <!-- Display: 荐 -->

URL Encoding:

// 荐 URL encoding
https://unicodefinder.com/search.php?query=%E8%8D%90

Encodings

MD5:

d9ebe0a6e923594278ce3fa6dad9e42e

SHA1:

364bd549e49ca1592ef4d40977565ef5ef05ef7d

Base64:

6I2Q