Unicode Finder

"饕" U+9955(CJK UNIFIED IDEOGRAPH-9955)

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

Programming

C
\u9955
JavaScript
\u9955
Java
\u9955
Json
\u9955
Python
\u9955
Perl
\x{9955}
PHP
\x{9955}
Ruby
\u{9955}
Rust
\u{9955}
Go
\u9955

Web

CSS
\009955
HtmlDecimal
饕
HtmlHexadecimal
饕
Url
%E9%A5%95

Code

MD5
acf718577cbf65991472ad3258e35a75
Sha1
1580ed947efac7cc81796b959f11016243a1d9a5
Base64
6aWV

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9955';
console.log(char);  // Output: 饕

Java:

char c = '\u9955';
System.out.println(c);  // Output: 饕

JSON:

{"text": "\u9955"}  // Value: 饕

Python:

char = '\u9955'
print(char)  # Output: 饕

Perl:

my $char = "\x{9955}";
print $char;  # Output: 饕

PHP:

$char = "\x{9955}";
echo $char;  // Output: 饕

Ruby:

char = "\u{9955}"
puts char  # Output: 饕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009955";  /* Display: 饕 */
}

HTML Decimal:

<p>HTML decimal: &#39253;</p>  <!-- Display: 饕 -->

HTML Hexadecimal:

<p>HTML hex: &#x9955;</p>  <!-- Display: 饕 -->

URL Encoding:

// 饕 URL encoding
https://unicodefinder.com/search.php?query=%E9%A5%95

Encodings

MD5:

acf718577cbf65991472ad3258e35a75

SHA1:

1580ed947efac7cc81796b959f11016243a1d9a5

Base64:

6aWV