Unicode Finder

"烲" U+70F2(CJK UNIFIED IDEOGRAPH-70F2)

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

Programming

C
\u70F2
JavaScript
\u70F2
Java
\u70F2
Json
\u70F2
Python
\u70F2
Perl
\x{70F2}
PHP
\x{70F2}
Ruby
\u{70F2}
Rust
\u{70F2}
Go
\u70F2

Web

CSS
\0070F2
HtmlDecimal
烲
HtmlHexadecimal
烲
Url
%E7%83%B2

Code

MD5
5fd5aaac251799a8adb0a118877a3e69
Sha1
84be22f176831c51e2b38ba1fff4376093604249
Base64
54Oy

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u70F2';
console.log(char);  // Output: 烲

Java:

char c = '\u70F2';
System.out.println(c);  // Output: 烲

JSON:

{"text": "\u70F2"}  // Value: 烲

Python:

char = '\u70F2'
print(char)  # Output: 烲

Perl:

my $char = "\x{70F2}";
print $char;  # Output: 烲

PHP:

$char = "\x{70F2}";
echo $char;  // Output: 烲

Ruby:

char = "\u{70F2}"
puts char  # Output: 烲

Rust:

let c = '\u{70F2}';
println!("{}", c);  // Output: 烲

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0070F2";  /* Display: 烲 */
}

HTML Decimal:

<p>HTML decimal: &#28914;</p>  <!-- Display: 烲 -->

HTML Hexadecimal:

<p>HTML hex: &#x70F2;</p>  <!-- Display: 烲 -->

URL Encoding:

// 烲 URL encoding
https://unicodefinder.com/search.php?query=%E7%83%B2

Encodings

MD5:

5fd5aaac251799a8adb0a118877a3e69

SHA1:

84be22f176831c51e2b38ba1fff4376093604249

Base64:

54Oy