Unicode Finder

"烙" U+70D9(CJK UNIFIED IDEOGRAPH-70D9)

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

Programming

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

Web

CSS
\0070D9
HtmlDecimal
烙
HtmlHexadecimal
烙
Url
%E7%83%99

Code

MD5
9909323382f2c67ecc62f6995e821d14
Sha1
b06f5e52b4b9d2107d8f62e0ada607daf7f98538
Base64
54OZ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u70D9';
console.log(char);  // Output: 烙

Java:

char c = '\u70D9';
System.out.println(c);  // Output: 烙

JSON:

{"text": "\u70D9"}  // Value: 烙

Python:

char = '\u70D9'
print(char)  # Output: 烙

Perl:

my $char = "\x{70D9}";
print $char;  # Output: 烙

PHP:

$char = "\x{70D9}";
echo $char;  // Output: 烙

Ruby:

char = "\u{70D9}"
puts char  # Output: 烙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28889;</p>  <!-- Display: 烙 -->

HTML Hexadecimal:

<p>HTML hex: &#x70D9;</p>  <!-- Display: 烙 -->

URL Encoding:

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

Encodings

MD5:

9909323382f2c67ecc62f6995e821d14

SHA1:

b06f5e52b4b9d2107d8f62e0ada607daf7f98538

Base64:

54OZ