Unicode Finder

"写" U+5199(CJK UNIFIED IDEOGRAPH-5199)

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

Programming

C
\u5199
JavaScript
\u5199
Java
\u5199
Json
\u5199
Python
\u5199
Perl
\x{5199}
PHP
\x{5199}
Ruby
\u{5199}
Rust
\u{5199}
Go
\u5199

Web

CSS
\005199
HtmlDecimal
写
HtmlHexadecimal
写
Url
%E5%86%99

Code

MD5
4d7dc6c5f886053abc31cee1376fb5c0
Sha1
144d2cba118141edefa005ee71efe886948d6f1d
Base64
5YaZ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5199';
console.log(char);  // Output: 写

Java:

char c = '\u5199';
System.out.println(c);  // Output: 写

JSON:

{"text": "\u5199"}  // Value: 写

Python:

char = '\u5199'
print(char)  # Output: 写

Perl:

my $char = "\x{5199}";
print $char;  # Output: 写

PHP:

$char = "\x{5199}";
echo $char;  // Output: 写

Ruby:

char = "\u{5199}"
puts char  # Output: 写

Rust:

let c = '\u{5199}';
println!("{}", c);  // Output: 写

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005199";  /* Display: 写 */
}

HTML Decimal:

<p>HTML decimal: &#20889;</p>  <!-- Display: 写 -->

HTML Hexadecimal:

<p>HTML hex: &#x5199;</p>  <!-- Display: 写 -->

URL Encoding:

// 写 URL encoding
https://unicodefinder.com/search.php?query=%E5%86%99

Encodings

MD5:

4d7dc6c5f886053abc31cee1376fb5c0

SHA1:

144d2cba118141edefa005ee71efe886948d6f1d

Base64:

5YaZ