Unicode Finder

"苰" U+82F0(CJK UNIFIED IDEOGRAPH-82F0)

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

Programming

C
\u82F0
JavaScript
\u82F0
Java
\u82F0
Json
\u82F0
Python
\u82F0
Perl
\x{82F0}
PHP
\x{82F0}
Ruby
\u{82F0}
Rust
\u{82F0}
Go
\u82F0

Web

CSS
\0082F0
HtmlDecimal
苰
HtmlHexadecimal
苰
Url
%E8%8B%B0

Code

MD5
3efe28d79e5d38e56d9076224748319e
Sha1
d8f7cc5e1979dae69634249eaad00772b7f4c1c7
Base64
6Iuw

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u82F0';
console.log(char);  // Output: 苰

Java:

char c = '\u82F0';
System.out.println(c);  // Output: 苰

JSON:

{"text": "\u82F0"}  // Value: 苰

Python:

char = '\u82F0'
print(char)  # Output: 苰

Perl:

my $char = "\x{82F0}";
print $char;  # Output: 苰

PHP:

$char = "\x{82F0}";
echo $char;  // Output: 苰

Ruby:

char = "\u{82F0}"
puts char  # Output: 苰

Rust:

let c = '\u{82F0}';
println!("{}", c);  // Output: 苰

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0082F0";  /* Display: 苰 */
}

HTML Decimal:

<p>HTML decimal: &#33520;</p>  <!-- Display: 苰 -->

HTML Hexadecimal:

<p>HTML hex: &#x82F0;</p>  <!-- Display: 苰 -->

URL Encoding:

// 苰 URL encoding
https://unicodefinder.com/search.php?query=%E8%8B%B0

Encodings

MD5:

3efe28d79e5d38e56d9076224748319e

SHA1:

d8f7cc5e1979dae69634249eaad00772b7f4c1c7

Base64:

6Iuw