Unicode Finder

"媳" U+5AB3(CJK UNIFIED IDEOGRAPH-5AB3)

U+5AB3
Blocknamn
CJK Unified Ideographs
Namn
CJK UNIFIED IDEOGRAPH-5AB3

Programming

C
\u5AB3
JavaScript
\u5AB3
Java
\u5AB3
Json
\u5AB3
Python
\u5AB3
Perl
\x{5AB3}
PHP
\x{5AB3}
Ruby
\u{5AB3}
Rust
\u{5AB3}
Go
\u5AB3

Web

CSS
\005AB3
HtmlDecimal
媳
HtmlHexadecimal
媳
Url
%E5%AA%B3

Code

MD5
ad3c33c486daf292bbe37ca6801b5b4e
Sha1
203d1ed7c86a455a2c168c25c37ef69f1db1f73f
Base64
5aqz

Användningsexempel

Programming Languages

C:

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

JavaScript:

const char = '\u5AB3';
console.log(char);  // Output: 媳

Java:

char c = '\u5AB3';
System.out.println(c);  // Output: 媳

JSON:

{"text": "\u5AB3"}  // Value: 媳

Python:

char = '\u5AB3'
print(char)  # Output: 媳

Perl:

my $char = "\x{5AB3}";
print $char;  # Output: 媳

PHP:

$char = "\x{5AB3}";
echo $char;  // Output: 媳

Ruby:

char = "\u{5AB3}"
puts char  # Output: 媳

Rust:

let c = '\u{5AB3}';
println!("{}", c);  // Output: 媳

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005AB3";  /* Display: 媳 */
}

HTML Decimal:

<p>HTML decimal: &#23219;</p>  <!-- Display: 媳 -->

HTML Hexadecimal:

<p>HTML hex: &#x5AB3;</p>  <!-- Display: 媳 -->

URL Encoding:

// 媳 URL encoding
https://unicodefinder.com/search.php?query=%E5%AA%B3

Encodings

MD5:

ad3c33c486daf292bbe37ca6801b5b4e

SHA1:

203d1ed7c86a455a2c168c25c37ef69f1db1f73f

Base64:

5aqz