Unicode Finder

"齎" U+9F4E(CJK UNIFIED IDEOGRAPH-9F4E)

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

Programming

C
\u9F4E
JavaScript
\u9F4E
Java
\u9F4E
Json
\u9F4E
Python
\u9F4E
Perl
\x{9F4E}
PHP
\x{9F4E}
Ruby
\u{9F4E}
Rust
\u{9F4E}
Go
\u9F4E

Web

CSS
\009F4E
HtmlDecimal
齎
HtmlHexadecimal
齎
Url
%E9%BD%8E

Code

MD5
25790c6b29632ea49dbaaf7ae6ee6ba9
Sha1
9de33f418e2e0973da25cd85a0f0eae9e5a30953
Base64
6b2O

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9F4E';
console.log(char);  // Output: 齎

Java:

char c = '\u9F4E';
System.out.println(c);  // Output: 齎

JSON:

{"text": "\u9F4E"}  // Value: 齎

Python:

char = '\u9F4E'
print(char)  # Output: 齎

Perl:

my $char = "\x{9F4E}";
print $char;  # Output: 齎

PHP:

$char = "\x{9F4E}";
echo $char;  // Output: 齎

Ruby:

char = "\u{9F4E}"
puts char  # Output: 齎

Rust:

let c = '\u{9F4E}';
println!("{}", c);  // Output: 齎

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009F4E";  /* Display: 齎 */
}

HTML Decimal:

<p>HTML decimal: &#40782;</p>  <!-- Display: 齎 -->

HTML Hexadecimal:

<p>HTML hex: &#x9F4E;</p>  <!-- Display: 齎 -->

URL Encoding:

// 齎 URL encoding
https://unicodefinder.com/search.php?query=%E9%BD%8E

Encodings

MD5:

25790c6b29632ea49dbaaf7ae6ee6ba9

SHA1:

9de33f418e2e0973da25cd85a0f0eae9e5a30953

Base64:

6b2O