Unicode Finder

"烤" U+70E4(CJK UNIFIED IDEOGRAPH-70E4)

U+70E4
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-70E4

Programming

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

Web

CSS
\0070E4
HtmlDecimal
烤
HtmlHexadecimal
烤
Url
%E7%83%A4

Code

MD5
a315cf24633f51d43e73b70d55bedefc
Sha1
6c1706af306431c5fb511ca3f6cde53f8fbb800f
Base64
54Ok

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u70E4';
console.log(char);  // Output: 烤

Java:

char c = '\u70E4';
System.out.println(c);  // Output: 烤

JSON:

{"text": "\u70E4"}  // Value: 烤

Python:

char = '\u70E4'
print(char)  # Output: 烤

Perl:

my $char = "\x{70E4}";
print $char;  # Output: 烤

PHP:

$char = "\x{70E4}";
echo $char;  // Output: 烤

Ruby:

char = "\u{70E4}"
puts char  # Output: 烤

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28900;</p>  <!-- Display: 烤 -->

HTML Hexadecimal:

<p>HTML hex: &#x70E4;</p>  <!-- Display: 烤 -->

URL Encoding:

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

Encodings

MD5:

a315cf24633f51d43e73b70d55bedefc

SHA1:

6c1706af306431c5fb511ca3f6cde53f8fbb800f

Base64:

54Ok