Unicode Finder

"菸" U+83F8(CJK UNIFIED IDEOGRAPH-83F8)

U+83F8
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-83F8

Programming

C
\u83F8
JavaScript
\u83F8
Java
\u83F8
Json
\u83F8
Python
\u83F8
Perl
\x{83F8}
PHP
\x{83F8}
Ruby
\u{83F8}
Rust
\u{83F8}
Go
\u83F8

Web

CSS
\0083F8
HtmlDecimal
菸
HtmlHexadecimal
菸
Url
%E8%8F%B8

Code

MD5
8cd1858c9341d6b7fe05e921930566b6
Sha1
d8f34cf5e4926d3de2f9642222c6a8a9ca700e19
Base64
6I+4

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u83F8';
console.log(char);  // Output: 菸

Java:

char c = '\u83F8';
System.out.println(c);  // Output: 菸

JSON:

{"text": "\u83F8"}  // Value: 菸

Python:

char = '\u83F8'
print(char)  # Output: 菸

Perl:

my $char = "\x{83F8}";
print $char;  # Output: 菸

PHP:

$char = "\x{83F8}";
echo $char;  // Output: 菸

Ruby:

char = "\u{83F8}"
puts char  # Output: 菸

Rust:

let c = '\u{83F8}';
println!("{}", c);  // Output: 菸

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0083F8";  /* Display: 菸 */
}

HTML Decimal:

<p>HTML decimal: &#33784;</p>  <!-- Display: 菸 -->

HTML Hexadecimal:

<p>HTML hex: &#x83F8;</p>  <!-- Display: 菸 -->

URL Encoding:

// 菸 URL encoding
https://unicodefinder.com/search.php?query=%E8%8F%B8

Encodings

MD5:

8cd1858c9341d6b7fe05e921930566b6

SHA1:

d8f34cf5e4926d3de2f9642222c6a8a9ca700e19

Base64:

6I+4