Unicode Finder

"齨" U+9F68(CJK UNIFIED IDEOGRAPH-9F68)

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

Programming

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

Web

CSS
\009F68
HtmlDecimal
齨
HtmlHexadecimal
齨
Url
%E9%BD%A8

Code

MD5
a1cbfbd87241bdf544ecfeb92bdc3dfe
Sha1
682bc6dde31c7c7a9611b8326bf9d277ee0aadf1
Base64
6b2o

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9F68';
console.log(char);  // Output: 齨

Java:

char c = '\u9F68';
System.out.println(c);  // Output: 齨

JSON:

{"text": "\u9F68"}  // Value: 齨

Python:

char = '\u9F68'
print(char)  # Output: 齨

Perl:

my $char = "\x{9F68}";
print $char;  # Output: 齨

PHP:

$char = "\x{9F68}";
echo $char;  // Output: 齨

Ruby:

char = "\u{9F68}"
puts char  # Output: 齨

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40808;</p>  <!-- Display: 齨 -->

HTML Hexadecimal:

<p>HTML hex: &#x9F68;</p>  <!-- Display: 齨 -->

URL Encoding:

// 齨 URL encoding
https://unicodefinder.com/search.php?query=%E9%BD%A8

Encodings

MD5:

a1cbfbd87241bdf544ecfeb92bdc3dfe

SHA1:

682bc6dde31c7c7a9611b8326bf9d277ee0aadf1

Base64:

6b2o